mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
15 lines
392 B
CMake
15 lines
392 B
CMake
cmake_minimum_required(VERSION 3.21)
|
|
|
|
set(PROJECT_NAME TestDependency)
|
|
|
|
project(${PROJECT_NAME} VERSION 1.0.0)
|
|
|
|
add_library(${PROJECT_NAME} SHARED main.cpp)
|
|
target_compile_features(${PROJECT_NAME} PUBLIC cxx_std_20)
|
|
|
|
add_compile_definitions(EXPORTING_MOD)
|
|
|
|
set(GEODE_LINK_SOURCE ON)
|
|
set_target_properties(${PROJECT_NAME} PROPERTIES PREFIX "")
|
|
|
|
create_geode_file(${PROJECT_NAME} DONT_INSTALL)
|