mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-22 23:48:08 -05:00
2c3520f454
this removes submodules and external libraries in the code in favor of importing them as CPM packages. CPM_SOURCE_CACHE is recommended as codegen has to readd two of the same dependencies
12 lines
379 B
CMake
12 lines
379 B
CMake
cmake_minimum_required(VERSION 3.3.0)
|
|
|
|
|
|
add_library(Bootstrapper SHARED Bootstrapper.cpp)
|
|
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)
|