projects
/
pulseview.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c0d9e65
)
Set explicit BOOST_ROOT on Windows/MinGW.
author
Uwe Hermann
<uwe@hermann-uwe.de>
Thu, 11 Oct 2012 14:55:20 +0000
(16:55 +0200)
committer
Uwe Hermann
<uwe@hermann-uwe.de>
Thu, 11 Oct 2012 21:04:51 +0000
(23:04 +0200)
CMakeLists.txt
patch
|
blob
|
history
diff --git
a/CMakeLists.txt
b/CMakeLists.txt
index 0ed74e444af5e5284b767753f75bb897ebfde534..afbe0df89afcb2aa311bf823b6bc302fdeb23cec 100644
(file)
--- a/
CMakeLists.txt
+++ b/
CMakeLists.txt
@@
-9,6
+9,11
@@
pkg_check_modules(PKGDEPS REQUIRED
libsigrok>=0.2.0
)
+# On Windows/MinGW we explicitly point cmake to the Boost directory.
+if(WIN32)
+set(BOOST_ROOT /usr/local)
+endif(WIN32)
+
find_package(Qt4 REQUIRED)
find_package(Boost 1.46 COMPONENTS unit_test_framework REQUIRED)