Export CMake compile commands for clangd
This commit is contained in:
parent
38c0eaf462
commit
d03b0b804e
2 changed files with 5 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
.cache
|
|
@ -12,3 +12,7 @@ target_include_directories(${ProjectName} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/inc
|
||||||
|
|
||||||
find_package(SFML 2.5 COMPONENTS system window graphics network audio REQUIRED)
|
find_package(SFML 2.5 COMPONENTS system window graphics network audio REQUIRED)
|
||||||
target_link_libraries(${ProjectName} sfml-graphics)
|
target_link_libraries(${ProjectName} sfml-graphics)
|
||||||
|
|
||||||
|
# Generates compile_commands.json in build folder, which clangd will pick up
|
||||||
|
# Without this, clangd might assume the wrong C++ version
|
||||||
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
Loading…
Add table
Reference in a new issue