aboutsummaryrefslogtreecommitdiff
path: root/cmake/GlobalConfig.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/GlobalConfig.cmake')
-rw-r--r--cmake/GlobalConfig.cmake4
1 files changed, 4 insertions, 0 deletions
diff --git a/cmake/GlobalConfig.cmake b/cmake/GlobalConfig.cmake
index 650d4091f4..9cf825e1ce 100644
--- a/cmake/GlobalConfig.cmake
+++ b/cmake/GlobalConfig.cmake
@@ -131,6 +131,10 @@ find_package(Boost 1.59 REQUIRED COMPONENTS unit_test_framework system filesyste
include_directories(SYSTEM "${Boost_INCLUDE_DIRS}")
link_directories(${Boost_LIBRARY_DIRS})
+# cxxopts (Alternative to boost::program_options)
+find_path(CXXOPTS_INCLUDE cxxopts/cxxopts.hpp PATHS third-party)
+include_directories(SYSTEM "${CXXOPTS_INCLUDE}")
+
# pthread
find_package (Threads)