2022-10-08 05:41:36 -04:00
|
|
|
cmake_minimum_required(VERSION 3.3.0)
|
|
|
|
|
|
|
|
|
|
|
|
add_library(Bootstrapper SHARED Bootstrapper.cpp)
|
2022-12-13 02:24:03 -05:00
|
|
|
target_compile_features(Bootstrapper PUBLIC cxx_std_17)
|
2022-10-08 05:41:36 -04:00
|
|
|
set_target_properties(Bootstrapper PROPERTIES
|
|
|
|
PREFIX ""
|
|
|
|
OUTPUT_NAME "GeodeBootstrapper"
|
|
|
|
LIBRARY_OUTPUT_DIRECTORY "${GEODE_BIN_PATH}/nightly"
|
|
|
|
RUNTIME_OUTPUT_DIRECTORY "${GEODE_BIN_PATH}/nightly"
|
|
|
|
)
|
2022-10-08 06:43:24 -04:00
|
|
|
|
2022-12-12 14:23:53 -05:00
|
|
|
target_link_libraries(Bootstrapper PRIVATE "-framework CoreFoundation" ghc_filesystem)
|