]> vaikene.ee Git - evaf/blob - src/apps/PswGen/GUI/CMakeLists.txt
561060ec6898ac85241e031cd804784a53c9e892
[evaf] / src / apps / PswGen / GUI / CMakeLists.txt
1 # Name of the target
2 set(TARGET PswGui)
3
4 # Qt modules
5 include(${QT_USE_FILE})
6
7 # Include files
8 include_directories(${eVaf_INCLUDE})
9
10 # Required eVaf libraries
11 set(eVaf_LIBRARIES CommonLib PluginsLib GuiLib)
12
13 # Source files
14 set(SRCS
15 gui.cpp
16 )
17
18 # Header files for the meta-object compiler
19 set(MOC_HDRS
20 gui.h
21 )
22
23 # Version info resource file for Windows builds
24 if(WIN32 AND NOT MINGW)
25 set(SRCS ${SRCS} version.rc)
26 endif(WIN32 AND NOT MINGW)
27
28 qt4_wrap_cpp(MOC_SRCS ${MOC_HDRS})
29
30 add_library(${TARGET} SHARED ${SRCS} ${MOC_SRCS})
31
32 target_link_libraries(${TARGET} ${QT_LIBRARIES} ${eVaf_LIBRARIES})
33
34 install(TARGETS ${TARGET} DESTINATION bin)