도입부 CMake 튜토리얼을 통해서 step-by-step으로 일반적인 build system에 대해서 이해하고 도움을 받을 수 있다. Step1 : Basic starting point 단순한 프로젝트 building을 위해서는 아래 텍스트 3줄이 CMakeLists.txt에 기술되어야 한다. CMakeLists.txt를 아래 내용을 포함해서 만들어보자. cmake_minimum_required(VERSION 3.10) # set the project name project(Tutorial) # add the executable add_executable(Tutorial tutorial.c) ※ 본 예제에서는 소문자가 쓰였지만, CMakeLists.txt에서는 대문자, 소문자, 대소문자 혼합 모두 지원..