mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 07:57:51 -05:00
13 lines
435 B
CMake
13 lines
435 B
CMake
cmake_minimum_required(VERSION 3.3.0)
|
|
|
|
|
|
add_library(Bootstrapper SHARED Bootstrapper.cpp)
|
|
target_compile_features(Bootstrapper PUBLIC cxx_std_17)
|
|
set_target_properties(Bootstrapper PROPERTIES
|
|
PREFIX ""
|
|
OUTPUT_NAME "GeodeBootstrapper"
|
|
LIBRARY_OUTPUT_DIRECTORY "${GEODE_BIN_PATH}/nightly"
|
|
RUNTIME_OUTPUT_DIRECTORY "${GEODE_BIN_PATH}/nightly"
|
|
)
|
|
|
|
target_link_libraries(Bootstrapper PRIVATE "-framework CoreFoundation" ghc_filesystem)
|