mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-10 00:00:05 +00:00
20 lines
649 B
CMake
20 lines
649 B
CMake
cmake_minimum_required(VERSION 3.10)
|
|
|
|
set(SHELL_INCLUDEDIR ${CMAKE_CURRENT_SOURCE_DIR}/include)
|
|
|
|
project(LaikaShell VERSION 1.0)
|
|
|
|
# Put CMake targets (ALL_BUILD/ZERO_CHECK) into a folder
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
|
|
|
# compile LaikaShell
|
|
file(GLOB_RECURSE SHELLSOURCE ${CMAKE_CURRENT_SOURCE_DIR}/src/**.c)
|
|
add_executable(LaikaShell ${SHELLSOURCE})
|
|
target_link_libraries(LaikaShell PUBLIC LaikaLib)
|
|
|
|
# add the 'DEBUG' preprocessor definition if we're compiling as Debug
|
|
target_compile_definitions(LaikaShell PUBLIC "$<$<CONFIG:Debug>:DEBUG>")
|
|
|
|
# add include directory
|
|
target_include_directories(LaikaShell PUBLIC ${SHELL_INCLUDEDIR})
|