Skip to content

Commit 5cdab63

Browse files
committed
build: CMAKE_INSTALL_PREFIX value fix
# feat: (new feature for the user, not a new feature for build script) # fix: (bug fix for the user, not a fix to a build script) # docs: (changes to the documentation) # style: (formatting, missing semi colons, etc; no production code change) # perf: (performance adjustments) # refactor: (refactoring production code, no logical changes eg. renaming a variable) # test: (adding missing tests, refactoring tests; no production code change) # chore: (updating grunt tasks etc; no production code change) # ci: (ci configuration changes) # build: (build configuration changes) # # fixing a build failure should have the same tag as the tag used to submit the code we are fixing
1 parent 0e60995 commit 5cdab63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

superbuild/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ExternalProject_Add(decimal_for_cpp
1919
SOURCE_DIR ${CMAKE_SOURCE_DIR}/..
2020
DEPENDS boost
2121
CMAKE_ARGS
22-
-DCMAKE_INSTALL_PREFIX=<INSTALL_DIR>
22+
-DCMAKE_INSTALL_PREFIX=${CMAKE_BINARY_DIR}/install
2323
-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE}
2424
LOG_DOWNLOAD ON
2525
LOG_CONFIGURE ON

0 commit comments

Comments
 (0)