mirror of
https://github.com/CPunch/Laika.git
synced 2024-11-22 04:50:06 +00:00
CPunch
5aecc1b63f
- VMBoxGen is built before shared lib - VMBoxGen has no reliance on the shared lib, just the config file - main config was moved to the root cmakelists
22 lines
692 B
CMake
22 lines
692 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
|
|
project(VMBoxGen VERSION 1.0)
|
|
|
|
# Put CMake targets (ALL_BUILD/ZERO_CHECK) into a folder
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
|
|
|
# compile vmTest
|
|
file(GLOB_RECURSE VMTESTSOURCE ${CMAKE_CURRENT_SOURCE_DIR}/src/**.c)
|
|
add_executable(VMBoxGen ${VMTESTSOURCE})
|
|
target_link_libraries(VMBoxGen PUBLIC)
|
|
|
|
# add the 'DEBUG' preprocessor definition if we're compiling as Debug
|
|
target_compile_definitions(VMBoxGen PUBLIC "$<$<CONFIG:Debug>:DEBUG>")
|
|
|
|
# generate the VMBOXCONFIG file
|
|
if(LAIKA_OBFUSCATE)
|
|
add_custom_command(TARGET VMBoxGen POST_BUILD
|
|
COMMAND VMBoxGen ${LAIKA_VMBOXCONFIG}
|
|
COMMENT "Generating VMBox data & keys.."
|
|
)
|
|
endif () |