Skip to content

Commit b5e03aa

Browse files
committed
use the vendored version
1 parent b69f70d commit b5e03aa

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

CMakeLists.txt

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,7 @@ else()
8989

9090
ExternalProject_Add(${FMEM_NAME}
9191
PREFIX ${DEPS}
92-
GIT_REPOSITORY https://github.com/Kreijstal/fmem
93-
GIT_TAG 5f79fef3606be5dac54d62c7d0e2123363afabd7
92+
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/vendor/fmem
9493
CMAKE_ARGS -DBUILD_TESTING=FALSE
9594
-DCMAKE_INSTALL_PREFIX=${DEPS}
9695
-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}
@@ -101,14 +100,13 @@ else()
101100
set(EXTERNAL_FMEM "fmem")
102101
endif()
103102

104-
# Build argp-standalone as external project on Windows
103+
# Build argp-standalone from vendor folder on Windows
105104
# argp is not available natively on Windows, so we build it from source
106105
if(WIN32)
107106
set(ARGP_NAME argp${EXTERNAL_LIB_DIR_SUFFIX})
108107
ExternalProject_Add(${ARGP_NAME}
109108
PREFIX ${DEPS}
110-
GIT_REPOSITORY https://github.com/artgins/argp-standalone.git
111-
GIT_TAG v1.1.5
109+
SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/vendor/argp-standalone
112110
CMAKE_ARGS -DBUILD_TESTING=FALSE
113111
-DCMAKE_INSTALL_PREFIX=${DEPS}
114112
-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}

0 commit comments

Comments
 (0)