diff options
Diffstat (limited to 'qmake/generators/unix/CMakeLists.txt')
-rw-r--r-- | qmake/generators/unix/CMakeLists.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/qmake/generators/unix/CMakeLists.txt b/qmake/generators/unix/CMakeLists.txt new file mode 100644 index 000000000..9f35f35d4 --- /dev/null +++ b/qmake/generators/unix/CMakeLists.txt @@ -0,0 +1,29 @@ +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${CMAKE_SOURCE_DIR}/qmake + ${CMAKE_SOURCE_DIR}/qmake/generators + ${CMAKE_BINARY_DIR}/include +) + +link_directories() + + +##### unix-generator (static) + +set( target unix-generator ) +set( _SRC_ unixmake.cpp unixmake2.cpp ) + +tde_add_library( ${target} STATIC_PIC + + SOURCES + ${_SRC_} + + DEPENDENCIES + tqt-includes +) +set_property( TARGET ${target}-static + APPEND PROPERTY COMPILE_DEFINITIONS + TQT_NO_STL +) |