aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiodrag Milanović <mmicko@gmail.com>2019-10-09 11:54:06 +0200
committerGitHub <noreply@github.com>2019-10-09 11:54:06 +0200
commitcc8eaf7206c053145f26deee13655c451cfe2023 (patch)
tree9801ac8addc9d65cc0cdb5fccf1a79034d383552
parentcba36239a4b480b914a043ce6be706d99ab9bdd9 (diff)
parente9cced57bf210faa4674a78358cb1a94765b34db (diff)
downloadnextpnr-cc8eaf7206c053145f26deee13655c451cfe2023.tar.gz
nextpnr-cc8eaf7206c053145f26deee13655c451cfe2023.tar.bz2
nextpnr-cc8eaf7206c053145f26deee13655c451cfe2023.zip
Merge pull request #339 from YosysHQ/dave/cmakefix
Apply Boost CMake fix to all OSs
-rw-r--r--CMakeLists.txt4
1 files changed, 1 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e0e578df..fc38c130 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -12,9 +12,7 @@ option(STATIC_BUILD "Create static build" OFF)
option(EXTERNAL_CHIPDB "Create build with pre-built chipdb binaries" OFF)
option(SERIALIZE_CHIPDB "Never build chipdb in parallel to reduce peak memory use" ON)
-if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
- set(Boost_NO_BOOST_CMAKE ON)
-endif()
+set(Boost_NO_BOOST_CMAKE ON)
set(link_param "")
if (STATIC_BUILD)