Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

stop rocksdb's CMakeLists from force overriding CMAKE_INSTALL_PREFIX #9167

Merged
merged 1 commit into from
Jun 4, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions libraries/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ option(WITH_TOOLS CACHE OFF) # rocksdb: don't build this
option(WITH_BENCHMARK_TOOLS CACHE OFF) # rocksdb: don't build this
option(FAIL_ON_WARNINGS CACHE OFF) # rocksdb: stop the madness: warnings change over time

#on Linux, rocksdb will monkey with CMAKE_INSTALL_PREFIX is this is on
set(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT OFF)

add_subdirectory( fc )
add_subdirectory( builtins )
add_subdirectory( softfloat )
Expand Down