Change third-party directory to third_party.

This commit is contained in:
Nathan Moinvaziri 2023-04-20 08:52:57 -07:00
parent a0b138e06c
commit ee19400cf6
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
build/
third-party/
third_party/
.vscode

View File

@ -21,7 +21,7 @@ macro(clone_repo name url)
FetchContent_Declare(${name}
GIT_REPOSITORY ${${name_upper}_REPOSITORY}
GIT_TAG ${${name_upper}_TAG}
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/third-party/${name_lower})
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/third_party/${name_lower})
FetchContent_GetProperties(${name} POPULATED ${name_lower}_POPULATED)