mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-30 11:08:51 -06:00
Merge topic 'QtAutogen_tests_update_v2'
6938772aQtAutogen tests: Pass Qt compiler features to library targetsc4d4becfQtAutogen tests: Move the complex test case to a subdirectory2599f5d6QtAutogen tests: Extend test description in CMakeLists.txt7052af9dQtAutogen tests: Move independent sameName test to top list of CMakeLists.txtd675004dQtAutogen tests: Rename uiconly target to camel case uicOnlycb4bc19aQtAutogen tests: Rename rcc_empty target to camel case rccEmpty59dbd3f8QtAutogen tests: Rename rcconly target to camel case rccOnly.
This commit is contained in:
@@ -1245,7 +1245,7 @@ ${CMake_BINARY_DIR}/bin/cmake -DDIR=dev -P ${CMake_SOURCE_DIR}/Utilities/Release
|
||||
set(run_autogen_test ${CMAKE_CTEST_COMMAND} -V)
|
||||
set(run_autouic_test ${CMAKE_CTEST_COMMAND} -V)
|
||||
else()
|
||||
set(run_autogen_test QtAutogen)
|
||||
set(run_autogen_test complex/QtAutogen)
|
||||
set(run_autouic_test QtAutoUicInterface)
|
||||
endif()
|
||||
if(NOT CMAKE_CONFIGURATION_TYPES)
|
||||
|
||||
@@ -44,114 +44,45 @@ else()
|
||||
|
||||
endif()
|
||||
|
||||
# -- RCC only
|
||||
add_executable(rcconly rcconly.cpp second_resource.qrc)
|
||||
set_property(TARGET rcconly PROPERTY AUTORCC ON)
|
||||
target_link_libraries(rcconly ${QT_QTCORE_TARGET})
|
||||
|
||||
# -- RCC empty
|
||||
add_executable(rcc_empty rcc_empty.cpp rcc_empty_resource.qrc)
|
||||
set_property(TARGET rcc_empty PROPERTY AUTORCC ON)
|
||||
target_link_libraries(rcc_empty ${QT_QTCORE_TARGET})
|
||||
|
||||
get_property(QT_COMPILE_FEATURES TARGET ${QT_QTCORE_TARGET} PROPERTY INTERFACE_COMPILE_FEATURES)
|
||||
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
||||
|
||||
add_definitions(-DFOO -DSomeDefine="Barx")
|
||||
# -- Test: AUTORCC
|
||||
# RCC only
|
||||
add_executable(rccOnly rccOnly.cpp rccOnlyRes.qrc)
|
||||
set_property(TARGET rccOnly PROPERTY AUTORCC ON)
|
||||
target_link_libraries(rccOnly ${QT_QTCORE_TARGET})
|
||||
|
||||
# enable relaxed mode so automoc can handle all the special cases:
|
||||
set(CMAKE_AUTOMOC_RELAXED_MODE TRUE)
|
||||
# -- Test: AUTORCC
|
||||
# RCC empty
|
||||
add_executable(rccEmpty rccEmpty.cpp rccEmptyRes.qrc)
|
||||
set_property(TARGET rccEmpty PROPERTY AUTORCC ON)
|
||||
target_link_libraries(rccEmpty ${QT_QTCORE_TARGET})
|
||||
|
||||
set(CMAKE_AUTOUIC ON)
|
||||
set(CMAKE_AUTORCC ON)
|
||||
|
||||
# create an executable and two library targets, each requiring automoc:
|
||||
add_library(codeeditorLib STATIC codeeditor.cpp)
|
||||
|
||||
add_library(privateSlot OBJECT private_slot.cpp)
|
||||
|
||||
configure_file(generated_resource.qrc.in generated_resource.qrc @ONLY)
|
||||
add_custom_command(
|
||||
OUTPUT generated.txt
|
||||
COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_CURRENT_SOURCE_DIR}/generated.txt.in" "${CMAKE_CURRENT_BINARY_DIR}/generated.txt"
|
||||
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/generated.txt.in"
|
||||
)
|
||||
|
||||
add_custom_target(generate_moc_input
|
||||
DEPENDS generated.txt
|
||||
COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_CURRENT_SOURCE_DIR}/myinterface.h.in" "${CMAKE_CURRENT_BINARY_DIR}"
|
||||
COMMAND ${CMAKE_COMMAND} -E rename "${CMAKE_CURRENT_BINARY_DIR}/myinterface.h.in" "${CMAKE_CURRENT_BINARY_DIR}/myinterface.h"
|
||||
)
|
||||
|
||||
add_custom_command(
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/myotherinterface.h"
|
||||
COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_CURRENT_SOURCE_DIR}/myotherinterface.h.in" "${CMAKE_CURRENT_BINARY_DIR}/myotherinterface.h"
|
||||
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/myotherinterface.h.in"
|
||||
)
|
||||
|
||||
if (NOT CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_GENERATOR STREQUAL Ninja)
|
||||
set(debug_srcs "$<$<CONFIG:Debug>:debug_class.cpp>" $<$<CONFIG:Debug>:debug_resource.qrc>)
|
||||
set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS $<$<CONFIG:Debug>:TEST_DEBUG_CLASS>)
|
||||
endif()
|
||||
|
||||
# The -no-protection option disables the generation of include guards. Verify
|
||||
# that setting the source file property has an effect by using this and
|
||||
# issue an error in the preprocessor in calwidget.cpp if the include guard
|
||||
# is defined.
|
||||
set_source_files_properties(calwidget.ui PROPERTIES AUTOUIC_OPTIONS "-no-protection")
|
||||
|
||||
add_executable(QtAutogen main.cpp calwidget.cpp second_widget.cpp foo.cpp blub.cpp bar.cpp abc.cpp
|
||||
multiplewidgets.cpp
|
||||
xyz.cpp yaf.cpp gadget.cpp $<TARGET_OBJECTS:privateSlot>
|
||||
test.qrc second_resource.qrc resourcetester.cpp generated.cpp ${debug_srcs}
|
||||
${CMAKE_CURRENT_BINARY_DIR}/generated_resource.qrc
|
||||
)
|
||||
set_property(TARGET QtAutogen APPEND PROPERTY AUTOGEN_TARGET_DEPENDS generate_moc_input "${CMAKE_CURRENT_BINARY_DIR}/myotherinterface.h")
|
||||
|
||||
add_executable(targetObjectsTest targetObjectsTest.cpp $<TARGET_OBJECTS:privateSlot>)
|
||||
target_link_libraries(targetObjectsTest ${QT_LIBRARIES})
|
||||
|
||||
set_target_properties(
|
||||
QtAutogen codeeditorLib privateSlot targetObjectsTest
|
||||
PROPERTIES
|
||||
AUTOMOC TRUE
|
||||
)
|
||||
|
||||
# Test AUTOMOC and AUTORCC on source files with the same name
|
||||
# but in different subdirectories
|
||||
add_subdirectory(sameName)
|
||||
|
||||
include(GenerateExportHeader)
|
||||
# The order is relevant here. B depends on A, and B headers depend on A
|
||||
# headers both subdirectories use CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE and we
|
||||
# test that CMAKE_AUTOMOC successfully reads the include directories
|
||||
# for the build interface from those targets. There has previously been
|
||||
# a bug where caching of the include directories happened before
|
||||
# extracting the includes to pass to moc.
|
||||
add_subdirectory(Bdir)
|
||||
add_subdirectory(Adir)
|
||||
add_library(libC SHARED libC.cpp)
|
||||
set_target_properties(libC PROPERTIES AUTOMOC TRUE)
|
||||
generate_export_header(libC)
|
||||
target_link_libraries(libC LINK_PUBLIC libB)
|
||||
|
||||
target_link_libraries(QtAutogen codeeditorLib ${QT_LIBRARIES} libC)
|
||||
# -- Test: AUTOUIC
|
||||
# UIC only
|
||||
qtx_wrap_cpp(uicOnlyMoc uicOnlySource/uiconly.h)
|
||||
add_executable(uicOnly uicOnlySource/uiconly.cpp ${uicOnlyMoc})
|
||||
set_property(TARGET uicOnly PROPERTY AUTOUIC ON)
|
||||
target_link_libraries(uicOnly ${QT_LIBRARIES})
|
||||
|
||||
# -- Test: AUTOMOC, AUTORCC
|
||||
# Add not_generated_file.qrc to the source list to get the file-level
|
||||
# dependency, but don't generate a c++ file from it. Disable the AUTORCC
|
||||
# feature for this target. This tests that qrc files in the sources don't
|
||||
# have an effect on generation if AUTORCC is off.
|
||||
add_library(empty STATIC empty.cpp not_generated_file.qrc)
|
||||
set_target_properties(empty PROPERTIES AUTORCC OFF)
|
||||
|
||||
set_target_properties(empty PROPERTIES AUTOMOC TRUE)
|
||||
target_link_libraries(empty no_link_language)
|
||||
add_library(no_link_language STATIC empty.h)
|
||||
set_target_properties(no_link_language PROPERTIES AUTOMOC TRUE)
|
||||
# Pass Qt compiler features to targets that don't link against Qt
|
||||
target_compile_features(no_link_language PRIVATE ${QT_COMPILE_FEATURES})
|
||||
target_compile_features(empty PRIVATE ${QT_COMPILE_FEATURES})
|
||||
|
||||
qtx_wrap_cpp(uicOnlyMoc sub/uiconly.h)
|
||||
add_executable(uiconly sub/uiconly.cpp ${uicOnlyMoc})
|
||||
target_link_libraries(uiconly ${QT_LIBRARIES})
|
||||
|
||||
# -- Test: AUTORCC
|
||||
# When a file listed in a .qrc file changes the target must be rebuilt
|
||||
try_compile(RCC_DEPENDS
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/autorcc_depends"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/autorcc_depends"
|
||||
@@ -185,7 +116,8 @@ if (NOT file1_step1 GREATER file1_before)
|
||||
message(SEND_ERROR "file1 (${qrc_file1}) should have changed in the first step!")
|
||||
endif()
|
||||
|
||||
#-----------------------------------------------------------------------------
|
||||
# -- Test: AUTOMOC
|
||||
# Ensure a repeated build succeeds when a header containing a QObject changes
|
||||
try_compile(MOC_RERUN
|
||||
"${CMAKE_CURRENT_BINARY_DIR}/automoc_rerun"
|
||||
"${CMAKE_CURRENT_SOURCE_DIR}/automoc_rerun"
|
||||
@@ -207,3 +139,11 @@ execute_process(COMMAND "${CMAKE_COMMAND}" --build .
|
||||
if (automoc_rerun_result)
|
||||
message(SEND_ERROR "Second build of automoc_rerun failed.")
|
||||
endif()
|
||||
|
||||
# -- Test: AUTOMOC AUTORCC
|
||||
# Source files with the same basename in different subdirectories
|
||||
add_subdirectory(sameName)
|
||||
|
||||
# -- Test: AUTOMOC AUTORCC AUTOUIC
|
||||
# Complex test case
|
||||
add_subdirectory(complex)
|
||||
|
||||
81
Tests/QtAutogen/complex/CMakeLists.txt
Normal file
81
Tests/QtAutogen/complex/CMakeLists.txt
Normal file
@@ -0,0 +1,81 @@
|
||||
cmake_minimum_required(VERSION 3.1)
|
||||
|
||||
# -- Test: AUTOMOC AUTORCC AUTOUIC
|
||||
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
||||
add_definitions(-DFOO -DSomeDefine="Barx")
|
||||
|
||||
# enable relaxed mode so automoc can handle all the special cases:
|
||||
set(CMAKE_AUTOMOC_RELAXED_MODE TRUE)
|
||||
set(CMAKE_AUTOUIC ON)
|
||||
set(CMAKE_AUTORCC ON)
|
||||
|
||||
# create an executable and two library targets, each requiring automoc:
|
||||
add_library(codeeditorLib STATIC codeeditor.cpp)
|
||||
add_library(privateSlot OBJECT private_slot.cpp)
|
||||
# Pass Qt compiler features to targets that don't link against Qt
|
||||
target_compile_features(codeeditorLib PRIVATE ${QT_COMPILE_FEATURES})
|
||||
target_compile_features(privateSlot PRIVATE ${QT_COMPILE_FEATURES})
|
||||
|
||||
configure_file(generated_resource.qrc.in generated_resource.qrc @ONLY)
|
||||
add_custom_command(
|
||||
OUTPUT generated.txt
|
||||
COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_CURRENT_SOURCE_DIR}/generated.txt.in" "${CMAKE_CURRENT_BINARY_DIR}/generated.txt"
|
||||
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/generated.txt.in"
|
||||
)
|
||||
|
||||
add_custom_target(generate_moc_input
|
||||
DEPENDS generated.txt
|
||||
COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_CURRENT_SOURCE_DIR}/myinterface.h.in" "${CMAKE_CURRENT_BINARY_DIR}"
|
||||
COMMAND ${CMAKE_COMMAND} -E rename "${CMAKE_CURRENT_BINARY_DIR}/myinterface.h.in" "${CMAKE_CURRENT_BINARY_DIR}/myinterface.h"
|
||||
)
|
||||
|
||||
add_custom_command(
|
||||
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/myotherinterface.h"
|
||||
COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_CURRENT_SOURCE_DIR}/myotherinterface.h.in" "${CMAKE_CURRENT_BINARY_DIR}/myotherinterface.h"
|
||||
DEPENDS "${CMAKE_CURRENT_SOURCE_DIR}/myotherinterface.h.in"
|
||||
)
|
||||
|
||||
if (NOT CMAKE_CONFIGURATION_TYPES AND NOT CMAKE_GENERATOR STREQUAL Ninja)
|
||||
set(debug_srcs "$<$<CONFIG:Debug>:debug_class.cpp>" $<$<CONFIG:Debug>:debug_resource.qrc>)
|
||||
set_property(DIRECTORY APPEND PROPERTY COMPILE_DEFINITIONS $<$<CONFIG:Debug>:TEST_DEBUG_CLASS>)
|
||||
endif()
|
||||
|
||||
# The -no-protection option disables the generation of include guards. Verify
|
||||
# that setting the source file property has an effect by using this and
|
||||
# issue an error in the preprocessor in calwidget.cpp if the include guard
|
||||
# is defined.
|
||||
set_source_files_properties(calwidget.ui PROPERTIES AUTOUIC_OPTIONS "-no-protection")
|
||||
|
||||
add_executable(QtAutogen main.cpp calwidget.cpp second_widget.cpp foo.cpp blub.cpp bar.cpp abc.cpp
|
||||
multiplewidgets.cpp
|
||||
xyz.cpp yaf.cpp gadget.cpp $<TARGET_OBJECTS:privateSlot>
|
||||
test.qrc second_resource.qrc resourcetester.cpp generated.cpp ${debug_srcs}
|
||||
${CMAKE_CURRENT_BINARY_DIR}/generated_resource.qrc
|
||||
)
|
||||
set_property(TARGET QtAutogen APPEND PROPERTY AUTOGEN_TARGET_DEPENDS generate_moc_input "${CMAKE_CURRENT_BINARY_DIR}/myotherinterface.h")
|
||||
|
||||
add_executable(targetObjectsTest targetObjectsTest.cpp $<TARGET_OBJECTS:privateSlot>)
|
||||
target_link_libraries(targetObjectsTest ${QT_LIBRARIES})
|
||||
|
||||
set_target_properties(
|
||||
QtAutogen codeeditorLib privateSlot targetObjectsTest
|
||||
PROPERTIES
|
||||
AUTOMOC TRUE
|
||||
)
|
||||
|
||||
|
||||
include(GenerateExportHeader)
|
||||
# The order is relevant here. B depends on A, and B headers depend on A
|
||||
# headers both subdirectories use CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE and we
|
||||
# test that CMAKE_AUTOMOC successfully reads the include directories
|
||||
# for the build interface from those targets. There has previously been
|
||||
# a bug where caching of the include directories happened before
|
||||
# extracting the includes to pass to moc.
|
||||
add_subdirectory(Bdir)
|
||||
add_subdirectory(Adir)
|
||||
add_library(libC SHARED libC.cpp)
|
||||
set_target_properties(libC PROPERTIES AUTOMOC TRUE)
|
||||
generate_export_header(libC)
|
||||
target_link_libraries(libC LINK_PUBLIC libB)
|
||||
|
||||
target_link_libraries(QtAutogen codeeditorLib ${QT_LIBRARIES} libC)
|
||||
@@ -1,9 +1,9 @@
|
||||
|
||||
extern int qInitResources_second_resource();
|
||||
extern int qInitResources_rccEmptyRes();
|
||||
|
||||
int main(int, char**)
|
||||
{
|
||||
// Fails to link if the symbol is not present.
|
||||
qInitResources_second_resource();
|
||||
qInitResources_rccEmptyRes();
|
||||
return 0;
|
||||
}
|
||||
@@ -1,9 +1,9 @@
|
||||
|
||||
extern int qInitResources_rcc_empty_resource();
|
||||
extern int qInitResources_rccOnlyRes();
|
||||
|
||||
int main(int, char**)
|
||||
{
|
||||
// Fails to link if the symbol is not present.
|
||||
qInitResources_rcc_empty_resource();
|
||||
qInitResources_rccOnlyRes();
|
||||
return 0;
|
||||
}
|
||||
5
Tests/QtAutogen/rccOnlyRes.qrc
Normal file
5
Tests/QtAutogen/rccOnlyRes.qrc
Normal file
@@ -0,0 +1,5 @@
|
||||
<!DOCTYPE RCC><RCC version="1.0">
|
||||
<qresource>
|
||||
<file>rccOnly.cpp</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
Reference in New Issue
Block a user