summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/cmakeqt3app/CMakeLists.txt.src
diff options
context:
space:
mode:
Diffstat (limited to 'languages/cpp/app_templates/cmakeqt3app/CMakeLists.txt.src')
-rw-r--r--languages/cpp/app_templates/cmakeqt3app/CMakeLists.txt.src4
1 files changed, 2 insertions, 2 deletions
diff --git a/languages/cpp/app_templates/cmakeqt3app/CMakeLists.txt.src b/languages/cpp/app_templates/cmakeqt3app/CMakeLists.txt.src
index c4ce3e70..6122c34f 100644
--- a/languages/cpp/app_templates/cmakeqt3app/CMakeLists.txt.src
+++ b/languages/cpp/app_templates/cmakeqt3app/CMakeLists.txt.src
@@ -5,7 +5,7 @@
ADD_DEFINITIONS(${QT_DEFINITIONS} -Wall -O2 -g)
# add the Qt include dir to the include path
-INCLUDE_DIRECTORIES(${QT_INCLUDE_DIR})
+INCLUDE_DIRECTORIES(${TQT_INCLUDE_DIR})
# list all source files in a variable
SET(%{APPNAMELC}_SRCS main.cpp %{APPNAMELC}.cpp)
@@ -18,7 +18,7 @@ QT_WRAP_CPP (%{APPNAMELC} %{APPNAMELC}_SRCS %{APPNAMELC}.h)
ADD_EXECUTABLE(%{APPNAMELC} ${%{APPNAMELC}_SRCS})
# link the application to the Qt libs
-TARGET_LINK_LIBRARIES(%{APPNAMELC} ${QT_LIBRARIES} )
+TARGET_LINK_LIBRARIES(%{APPNAMELC} ${TQT_LIBRARIES} )
# create an install rule for the executable
INSTALL(TARGETS %{APPNAMELC} DESTINATION bin )