|
From: Tapio V. <aa...@us...> - 2011-01-31 17:15:50
|
Module: editor
Branch: master
Commit: feb10c42ef95992cdf35a26f9b88d9433a5e4645
Author: Tapio Vierros <tap...@gm...>
Date: Mon Jan 31 19:06:04 2011 +0200
CMake target includes headers: now all of them show up in Qt Creator.
---
CMakeLists.txt | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index f675775..4d995f1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -61,6 +61,6 @@ include_directories(${CMAKE_BINARY_DIR})
include_directories(${CMAKE_SOURCE_DIR})
-add_executable(editor ${SOURCE_FILES} ${MOC_SOURCES} ${RESOURCE_SOURCES} ${UI_SOURCES} ${TRANSLATIONS})
+add_executable(editor ${HEADER_FILES} ${SOURCE_FILES} ${MOC_SOURCES} ${RESOURCE_SOURCES} ${UI_SOURCES} ${TRANSLATIONS})
target_link_libraries(editor ${LIBS})
|