mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-26 17:36:05 -05:00
10 lines
291 B
CMake
10 lines
291 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"
|
|
)
|