lander/CMakeLists.txt

11 lines
222 B
CMake
Raw Normal View History

2022-11-15 16:05:47 +01:00
cmake_minimum_required(VERSION 3.24)
project(lander C CXX)
set(CMAKE_C_STANDARD 17)
add_subdirectory(crow)
include_directories(crow/include)
add_executable(lander src/main.cpp)
target_link_libraries(lander PUBLIC Crow)