From ee19400cf6efb88c5bbd92537176c9c6fcde9715 Mon Sep 17 00:00:00 2001 From: Nathan Moinvaziri Date: Thu, 20 Apr 2023 08:52:57 -0700 Subject: [PATCH] Change third-party directory to third_party. --- .gitignore | 2 +- cmake/clone-repo.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a6a2c4d..c68cada 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ build/ -third-party/ +third_party/ .vscode diff --git a/cmake/clone-repo.cmake b/cmake/clone-repo.cmake index 5e21cef..7ea515a 100644 --- a/cmake/clone-repo.cmake +++ b/cmake/clone-repo.cmake @@ -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)