You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cmkr/CMakeLists.txt

12 lines
274 B

4 years ago
cmake_minimum_required(VERSION 3.0)
project(cmk)
4 years ago
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
4 years ago
set(CMK_SRCS
src/main.cpp
)
add_executable(cmk ${CMK_SRCS})
4 years ago
target_compile_features(cmk PRIVATE cxx_std_17)
4 years ago
target_include_directories(cmk PRIVATE ${CMAKE_CURRENT_LIST_DIR}/vendor)