You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
223 B
9 lines
223 B
10 years ago
|
cmake_policy(SET CMP0015 NEW)
|
||
|
set(CMAKE_AUTOMOC OFF)
|
||
|
|
||
|
qt5_add_resources(JSQRC js.qrc)
|
||
|
add_library(jsqrc STATIC ${JSQRC})
|
||
|
qt5_use_modules(jsqrc Core)
|
||
|
|
||
|
install( TARGETS jsqrc ARCHIVE DESTINATION lib LIBRARY DESTINATION lib )
|