사용자 도구

사이트 도구


raylib:raylib_를_cpp로_vs_code_에서_사용하기
raylib 를 cpp로 vs code 에서 사용하기

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

양쪽 이전 판이전 판
다음 판
이전 판
raylib:raylib_를_cpp로_vs_code_에서_사용하기 [2023/10/30 10:45] 이거니맨raylib:raylib_를_cpp로_vs_code_에서_사용하기 [2023/11/20 00:27] (현재) 이거니맨
줄 70: 줄 70:
  
 {{ :raylib:raylibtemplate.zip |Raylib Template File}} {{ :raylib:raylibtemplate.zip |Raylib Template File}}
 +
 +
 +==== Makefile ====
 +
 +위 템플릿을 기존 Raylib 에 있던 c를 위한 컴파일 설정을 c++ 로 컴파일을 하게 바꾼 것이다. 
 +
 +따라서 그 원리를 이해하면 좋을 것이다. 
 +
 +
 +Makefile은 다음과 같이 c++에 대한 컴파일러인 g++.exe로 바뀌고 그에 따라 설정도 바뀌었다.
 +
 +솔직히 첨부된 Makefile에서 웹이나 기타 리눅스, OSX(맥)에 대한 것들은 지원도 상관 없다. 물론 본인이 리눅스 등 해당 플랫폼을 쓴다면 윈도우에 대한 설정도 지워도 상관 없다. 향후에는 간략화된  Makefile을 첨부해 보도록 하겠다. 
 +
 +=== 가. C 버전의 Makefile ===
 +
 +기존 C버전의 Makefile은 다음과 같다. 이게 가장 핵심 명령어이다. 
 +<code c>
 +# Define default C compiler: gcc
 +# NOTE: define g++ compiler if using C++
 +CC = gcc
 +
 +# Define default make program: Mingw32-make
 +MAKE = mingw32-make
 +
 +# Define compiler flags:
 +#  -O0                  defines optimization level (no optimization, better for debugging)
 +#  -O1                  defines optimization level
 +#  -g                   include debug information on compilation
 +#  -s                   strip unnecessary data from build -> do not use in debug builds
 +#  -Wall                turns on most, but not all, compiler warnings
 +#  -std=c99             defines C language mode (standard C from 1999 revision)
 +#  -std=gnu99           defines C language mode (GNU C from 1999 revision)
 +#  -Wno-missing-braces  ignore invalid warning (GCC bug 53119)
 +#  -D_DEFAULT_SOURCE    use with -std=c99 on Linux and PLATFORM_WEB, required for timespec
 +#  -ftime-report        Print   Compiling Elapsed time 
 +CFLAGS += -Wall -std=c99 -D_DEFAULT_SOURCE -Wno-missing-braces 
 +
 +ifeq ($(BUILD_MODE),DEBUG)
 +    CFLAGS += -g -O0
 +else
 +    CFLAGS += -s -O1
 +endif
 +
 +        CFLAGS += $(RAYLIB_PATH)/src/raylib.rc.data
 +        # ROOT_DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))
 +        # CFLAGS += $(ROOT_DIR)/Assets/DKIcon.png
 +        
 +# Define include paths for required headers
 +# NOTE: Several external required libraries (stb and others)
 +INCLUDE_PATHS = -I. -I$(RAYLIB_PATH)/src -I$(RAYLIB_PATH)/src/external
 +ifneq ($(wildcard /opt/homebrew/include/.*),)
 +    INCLUDE_PATHS += -I/opt/homebrew/include
 +endif
 +</code>
 +
 +
 +=== 나. C++ 버전의 Makefile ===
 +
 +컴파일러와 플래그만 C++에 맞게 바꿔주면 된다. 즉 다음 부분만 바꿔 주면 된다. 
 +
 +<code c++>
 +# Define default C compiler: gcc
 +# NOTE: define g++ compiler if using C++
 +CC = g++
 +
 +CFLAGS += -Wall -std=c++14 -D_DEFAULT_SOURCE -Wno-missing-braces 
 +</code>
 +
 +==== tasks.json ====
 +
 +.vscode  하위 폴더에는 tasks.json 파일이 있다. 
 +
 +여기에는 컴파일러가 만드는 어셈블러파일, 즉  objs가 뭘 근거로 할지를 설정해 줄 수 있다. 
 +
 +c 프로젝트에서는 "*.c"이다. 이를 "*.cpp"로 바꿔주면 된다. 
 +
 +다음과 같이 말이다. 
 +
 +<code cpp>
 +            "windows": {
 +                "command": "C:/raylib/w64devkit/bin/mingw32-make.exe",
 +                "args": [
 +                    "RAYLIB_PATH=C:/raylib/raylib",
 +                    "PROJECT_NAME=${fileBasenameNoExtension}",
 +                    "OBJS=*.cpp",
 +                    "B
 +</code>
 +
 +==== 템플릿 파일들 ==== 
 +
 +기존 템플릿 파일을 참조하는게 가장 손쉽긴 하다.
 +
 +c 버전은 [[https://github.com/DongkunLee/raylibbmfontextender|한글폰트 사용 라이브러리]]를 이용하면 되고, 
 +
 +c++  버전은 내가 만들어 둔 강좌 중 아무 프로젝트나 가져와서 지우고 새롭게 만들면 된다. 
 +
 +[[raylib:flappybird:다국어_지원하기|다국어 지원하기]]가 가장 최근 프로젝트이다. 
 +
  
 ===== 더보기 ===== ===== 더보기 =====
줄 77: 줄 175:
 [[raylib:pong게임|Raylib로 Pong게임 만들기]]와  [[raylib:pong게임|Raylib로 Pong게임 만들기]]와 
  
-[[raylib:flappy_bird_만들기|C++와 Raylib로 플래피버드 만들기]]를 읽어보자+[[raylib:flappybird:flappy_bird_만들기|C++와 Raylib로 플래피버드 만들기]]를 읽어보자
raylib/raylib_를_cpp로_vs_code_에서_사용하기.1698630355.txt.gz · 마지막으로 수정됨: 2023/10/30 10:45 저자 이거니맨