CppPatterns/cmake/ExportCompileCommands.cmake

9 lines
229 B
CMake
Raw Normal View History

2024-03-14 08:33:23 +00:00
set(CMAKE_EXPORT_COMPILE_COMMANDS
ON
CACHE BOOL "Export compile commands database")
if(CMAKE_EXPORT_COMPILE_COMMANDS)
set(CMAKE_CXX_STANDARD_INCLUDE_DIRECTORIES
${CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES})
endif()