summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-09-10 14:20:43 (GMT)
committerStephen Kelly <steveire@gmail.com>2014-09-17 12:39:42 (GMT)
commitb8877b1d62599bba7a014e95fbbd670f177243ce (patch)
treeba9c4f149b34ea7d124a5a49e6bf0f78d0802071 /Tests
parent71a11252e95797113ecb1a969386f496b7d4861b (diff)
downloadCMake-b8877b1d62599bba7a014e95fbbd670f177243ce.zip
CMake-b8877b1d62599bba7a014e95fbbd670f177243ce.tar.gz
CMake-b8877b1d62599bba7a014e95fbbd670f177243ce.tar.bz2
QtAutogen: Add source files to target when only AUTORCC is used.
Add missing entry to if condition.
Diffstat (limited to 'Tests')
-rw-r--r--Tests/QtAutogen/CMakeLists.txt3
-rw-r--r--Tests/QtAutogen/rcconly.cpp9
2 files changed, 12 insertions, 0 deletions
diff --git a/Tests/QtAutogen/CMakeLists.txt b/Tests/QtAutogen/CMakeLists.txt
index d2116aa..f9aa309 100644
--- a/Tests/QtAutogen/CMakeLists.txt
+++ b/Tests/QtAutogen/CMakeLists.txt
@@ -37,6 +37,9 @@ else()
endif()
+add_executable(rcconly rcconly.cpp second_resource.qrc)
+set_property(TARGET rcconly PROPERTY AUTORCC ON)
+target_link_libraries(rcconly ${QT_QTCORE_TARGET})
include_directories(${CMAKE_CURRENT_BINARY_DIR})
diff --git a/Tests/QtAutogen/rcconly.cpp b/Tests/QtAutogen/rcconly.cpp
new file mode 100644
index 0000000..854c4c1
--- /dev/null
+++ b/Tests/QtAutogen/rcconly.cpp
@@ -0,0 +1,9 @@
+
+extern int qInitResources_second_resource();
+
+int main(int, char**)
+{
+ // Fails to link if the symbol is not present.
+ qInitResources_second_resource();
+ return 0;
+}