geode/loader/dobby/example/CMakeLists.txt
2022-07-30 19:24:03 +03:00

21 lines
No EOL
315 B
CMake

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()