2022-05-14 18:24:20 +00:00
|
|
|
cmake_minimum_required(VERSION 3.16)
|
2022-01-24 03:28:16 +00:00
|
|
|
|
|
|
|
set(LIB_INCLUDEDIR ${CMAKE_CURRENT_SOURCE_DIR}/include)
|
|
|
|
|
2022-01-25 17:58:36 +00:00
|
|
|
project(LaikaLib VERSION ${LAIKA_VERSION_MAJOR}.${LAIKA_VERSION_MINOR})
|
2022-01-24 03:28:16 +00:00
|
|
|
|
|
|
|
# Put CMake targets (ALL_BUILD/ZERO_CHECK) into a folder
|
|
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
|
|
|
|
|
|
|
# compile LaikaLib library
|
2022-02-17 23:38:34 +00:00
|
|
|
file(GLOB_RECURSE LIBSOURCE ${CMAKE_CURRENT_SOURCE_DIR}/src/**.c ${CMAKE_CURRENT_SOURCE_DIR}/vendor/**.c)
|
2022-03-14 05:51:11 +00:00
|
|
|
file(GLOB_RECURSE LIBHEADERS ${CMAKE_CURRENT_SOURCE_DIR}/include/**.h)
|
|
|
|
add_library(LaikaLib STATIC ${LIBSOURCE} ${LIBHEADERS})
|
2022-03-14 17:21:29 +00:00
|
|
|
target_link_libraries(LaikaLib PUBLIC sodium)
|
2022-01-24 03:28:16 +00:00
|
|
|
|
2022-05-19 17:32:39 +00:00
|
|
|
# make sure we're compiled *AFTER* lboxconfig.h has been generated
|
|
|
|
add_dependencies(LaikaLib VMBoxGen)
|
|
|
|
|
2022-01-24 03:28:16 +00:00
|
|
|
# add the version definitions and the 'DEBUG' preprocessor definition if we're compiling as Debug
|
2022-01-30 07:15:51 +00:00
|
|
|
target_compile_definitions(LaikaLib PUBLIC "$<$<CONFIG:Debug>:DEBUG>")
|
2022-01-24 03:28:16 +00:00
|
|
|
|
|
|
|
# add include directory
|
2022-03-14 05:51:11 +00:00
|
|
|
target_include_directories(LaikaLib PUBLIC ${LIB_INCLUDEDIR} ${CMAKE_CURRENT_SOURCE_DIR}/libsodium/libsodium/src/libsodium/include)
|
2022-01-24 03:28:16 +00:00
|
|
|
|
|
|
|
# set library name
|
2022-01-25 17:58:36 +00:00
|
|
|
set_target_properties(LaikaLib PROPERTIES OUTPUT_NAME laika-${LAIKA_VERSION_MAJOR}.${LAIKA_VERSION_MINOR})
|