diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-09-25 18:25:15 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-09-25 18:25:15 -0500 |
| commit | 1ef96f9544f4a4922ae90bf59115fa060651f04b (patch) | |
| tree | 0241f695204bbf9692e0d30a08077763be75a40b | |
| parent | d413b16d34be539467cdddc41e8c6f6629402a94 (diff) | |
| parent | b9e74f6b6d3d46690b826f0c4c6d8657d6c6e996 (diff) | |
| download | monzero-gui-1ef96f9544f4a4922ae90bf59115fa060651f04b.tar.gz monzero-gui-1ef96f9544f4a4922ae90bf59115fa060651f04b.tar.xz monzero-gui-1ef96f9544f4a4922ae90bf59115fa060651f04b.zip | |
Merge pull request #3105
b9e74f6 cmake: support ARCH and BUILD_64 overriding (xiphon)
| -rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3f437da7..2dfe702e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -26,8 +26,8 @@ if(DEBUG) endif() set(BUILD_GUI_DEPS ON) -set(ARCH "x86-64") -set(BUILD_64 ON) +set(ARCH "x86-64" CACHE STRING "Target architecture") +set(BUILD_64 ON CACHE BOOL "Build 64-bit binaries") if(NOT MANUAL_SUBMODULES) find_package(Git) |
