Initial commit

This commit is contained in:
user
2026-07-12 14:34:52 +04:00
commit 3abf6bd9c2
557 changed files with 68706 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# Copy compile_commands.json to source directory
if (CMAKE_EXPORT_COMPILE_COMMANDS)
add_custom_target(
CopyCompileCommands ALL
COMMAND ${CMAKE_COMMAND} -E copy_if_different
${CMAKE_BINARY_DIR}/compile_commands.json
${CMAKE_SOURCE_DIR}/compile_commands.json
COMMENT "Copying compile_commands.json to source directory"
)
endif()