I rely on these to detect options and flags: $<TARGET_PROPERTY:${_target},COMPILE_FLAGS> $<TARGET_PROPERTY:${_target},COMPILE_OPTIONS>
But not all options are picked up. These are missing: 1. Debug flag (when CMAKE_BUILD_TYPE=Debug) 2. -std=xx (CMAKE_CXX_STANDARD) How can I reliably detect ALL compilation flags for a target? Picking up these two flags is required for my pre-compiled header cmake hack[1]. It used to work OK. I guess Debug can be detected and picked up from _FLAGS_DEBUG, but I don't see a way to pick up -std=. Lars 1) https://github.com/larsch/cmake-precompiled-header/
-- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitware offers various services to support the CMake community. For more information on each offering, please visit: CMake Support: http://cmake.org/cmake/help/support.html CMake Consulting: http://cmake.org/cmake/help/consulting.html CMake Training Courses: http://cmake.org/cmake/help/training.html Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Follow this link to subscribe/unsubscribe: https://cmake.org/mailman/listinfo/cmake