mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-10 00:00:05 +00:00
42 lines
1.4 KiB
CMake
42 lines
1.4 KiB
CMake
cmake_minimum_required(VERSION 3.10)
|
|
|
|
set(LIB_INCLUDEDIR ${CMAKE_CURRENT_SOURCE_DIR}/include)
|
|
|
|
# DO NOT USE THESE KEYS, TESTING ONLY
|
|
if(NOT LAIKA_PUBKEY)
|
|
set(LAIKA_PUBKEY "997d026d1c65deb6c30468525132be4ea44116d6f194c142347b67ee73d18814")
|
|
endif ()
|
|
|
|
if(NOT LAIKA_PRIVKEY)
|
|
set(LAIKA_PRIVKEY "1dbd33962f1e170d1e745c6d3e19175049b5616822fac2fa3535d7477957a841")
|
|
endif ()
|
|
|
|
# version details
|
|
set(LAIKA_VERSION_MAJOR 0)
|
|
set(LAIKA_VERSION_MINOR 0)
|
|
|
|
project(LaikaLib VERSION ${LAIKA_VERSION_MAJOR}.${LAIKA_VERSION_MINOR})
|
|
|
|
message(STATUS "Building config file")
|
|
configure_file(${LIB_INCLUDEDIR}/lconfig.h.in ${LIB_INCLUDEDIR}/lconfig.h)
|
|
|
|
# Put CMake targets (ALL_BUILD/ZERO_CHECK) into a folder
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
|
|
|
set(sodium_USE_STATIC_LIBS)
|
|
find_package(Sodium)
|
|
|
|
# compile LaikaLib library
|
|
file(GLOB_RECURSE LIBSOURCE ${CMAKE_CURRENT_SOURCE_DIR}/src/**.c)
|
|
add_library(LaikaLib STATIC ${LIBSOURCE})
|
|
target_link_libraries(LaikaLib PRIVATE ${sodium_LIBRARY_RELEASE})
|
|
|
|
# add the version definitions and the 'DEBUG' preprocessor definition if we're compiling as Debug
|
|
target_compile_definitions(LaikaLib PUBLIC "$<$<CONFIG:Debug>:DEBUG>")
|
|
|
|
# add include directory
|
|
target_include_directories(LaikaLib PUBLIC ${LIB_INCLUDEDIR} ${sodium_INCLUDE_DIR})
|
|
|
|
# set library name
|
|
set_target_properties(LaikaLib PROPERTIES OUTPUT_NAME laika-${LAIKA_VERSION_MAJOR}.${LAIKA_VERSION_MINOR})
|