Merge topic 'test-fix-FindGTK2-cxx11'

c41b9dc7 Tests: Fix GTK2Components.gtkmm test with sigc++ >= 2.5.1
This commit is contained in:
Brad King 2016-03-28 09:25:45 -04:00 committed by CMake Topic Stage
commit d29004756f
1 changed files with 5 additions and 0 deletions

View File

@ -12,3 +12,8 @@ target_link_libraries(gtkmm-target GTK2::gtkmm)
add_executable(gtkmm-all-libs WIN32 main.cpp helloworld.cpp helloworld.h)
target_link_libraries(gtkmm-all-libs ${GTK2_LIBRARIES})
target_include_directories(gtkmm-all-libs PRIVATE ${GTK2_INCLUDE_DIRS})
# Linking via the library variables does not cause compile feature
# requirements to propagate. Do it manually for purposes of this test.
get_property(features TARGET GTK2::sigc++ PROPERTY INTERFACE_COMPILE_FEATURES)
set_property(TARGET gtkmm-all-libs PROPERTY COMPILE_FEATURES ${features})