Laika/CMakeLists.txt

15 lines
473 B
CMake

cmake_minimum_required(VERSION 3.10)
project(Laika)
# Set the project as the default startup project for VS
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT Laika)
# Output binaries to the bin folder in the source directory
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/bin)
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/bin)
# compile laikalib, cnc & bot
add_subdirectory(lib)
add_subdirectory(cnc)
add_subdirectory(bot)