]> vaikene.ee Git - evaf/blobdiff - src/libs/Common/CMakeLists.txt
Changes to build the software with mingw on Windows.
[evaf] / src / libs / Common / CMakeLists.txt
index 31fc6347508b042b5ed2e560bde73675126bee52..83affd4f2c5130191a4136f76a948bd08efeeb64 100644 (file)
@@ -23,6 +23,9 @@ set(SRCS
     logger.cpp
     registry.cpp
     util.cpp
+    inifile.cpp
+    config.cpp
+    prop.cpp
 )
 
 # Header files for the meta-object compiler
@@ -31,16 +34,20 @@ set(MOC_HDRS
     ieventqueue.h
     ilogger.h
     iregistry.h
+    iconfig.h
+    iprop.h
     app.h
     eventqueue.h
     logger.h
     registry.h
+    config.h
+    prop.h
 )
 
 # Version info resource file for Windows builds
-if(WIN32)
+if(WIN32 AND NOT MINGW)
     set(SRCS ${SRCS} version.rc)
-endif(WIN32)
+endif(WIN32 AND NOT MINGW)
 
 qt4_wrap_cpp(MOC_SRCS ${MOC_HDRS})