mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-27 01:45:35 -05:00
21 lines
315 B
Text
21 lines
315 B
Text
|
if(SYSTEM.Darwin)
|
||
|
add_executable(darwin_example
|
||
|
main.cc
|
||
|
darwin_common_api.cc
|
||
|
)
|
||
|
|
||
|
target_link_libraries(darwin_example
|
||
|
DobbyX
|
||
|
)
|
||
|
endif()
|
||
|
|
||
|
if(SYSTEM.Android)
|
||
|
add_executable(android_example
|
||
|
main.cc
|
||
|
android_common_api.cc
|
||
|
)
|
||
|
|
||
|
target_link_libraries(android_example
|
||
|
dobby
|
||
|
)
|
||
|
endif()
|