8 lines
154 B
CMake
8 lines
154 B
CMake
|
cmake_minimum_required(VERSION 3.0)
|
||
|
|
||
|
project(study_cpp LANGUAGES C)
|
||
|
|
||
|
add_executable(study_cpp main.c)
|
||
|
|
||
|
install(TARGETS study_cpp RUNTIME DESTINATION bin)
|