blob: ef093a56bb69cd2c9835f5524394232c01f5c199 (
plain)
1
2
3
4
5
6
7
8
|
add_library(asteroid-helloworld main.cpp resources.qrc)
set_target_properties(asteroid-helloworld PROPERTIES PREFIX "" SUFFIX "")
target_link_libraries(asteroid-helloworld PUBLIC
AsteroidApp)
install(TARGETS asteroid-helloworld
DESTINATION ${CMAKE_INSTALL_BINDIR})
|