aboutsummaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
blob: c6b802caae91c3df453a5d25332b3eaa57c29e0e (plain)
1
2
3
4
5
6
7
8
add_library(asteroid-helloworld main.cpp resources.qrc)
set_target_properties(asteroid-helloworld PROPERTIES PREFIX "")

target_link_libraries(asteroid-helloworld PUBLIC
	AsteroidApp)

install(TARGETS asteroid-helloworld
	DESTINATION ${CMAKE_INSTALL_LIBDIR})