diff options
author | Thomas Winget <tewinget@gmail.com> | 2014-07-06 13:13:06 -0400 |
---|---|---|
committer | Thomas Winget <tewinget@gmail.com> | 2014-07-06 13:13:06 -0400 |
commit | c6ffd810aff30c321a411f47544584ab6522713f (patch) | |
tree | 850d6b51e86f9c91221f67b6acd59ff158115d87 /CMakeLists.txt | |
parent | Merge pull request #55 from monero-project/revert-54-master (diff) | |
parent | needed to remove REQUIRED from find_package(Threads) (diff) | |
download | monero-c6ffd810aff30c321a411f47544584ab6522713f.tar.xz |
Merge pull request #56 from tewinget/master
transaction splitting
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 6f084ba22..c5a7220e9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ set(STATIC ${MSVC} CACHE BOOL "Link libraries statically") if (UNIX AND NOT APPLE) # Note that at the time of this writing the -Wstrict-prototypes flag added below will make this fail - find_package(Threads REQUIRED) + find_package(Threads) endif() if(MSVC) |