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