We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
2 parentsa315e2b +e72816a commit7765e6eCopy full SHA for 7765e6e
CMakeLists.txt
@@ -8,6 +8,7 @@ project(CPP-NETLIB)
8
9
option(CPP-NETLIB_BUILD_SHARED_LIBS"Build cpp-netlib as shared libraries."OFF )
10
option(CPP-NETLIB_BUILD_TESTS"Build the cpp-netlib project tests."ON)
11
+option(CPP-NETLIB_BUILD_EXPERIMENTS"Build the cpp-netlib project experiments."ON)
12
option(CPP-NETLIB_BUILD_EXAMPLES"Build the cpp-netlib project examples."ON)
13
14
include(GNUInstallDirs)
@@ -87,7 +88,9 @@ if (Boost_FOUND)
87
88
if (CPP-NETLIB_BUILD_TESTS)
89
add_subdirectory(libs/network/test)
90
endif (CPP-NETLIB_BUILD_TESTS)
-add_subdirectory(libs/network/experiment)
91
+ if (CPP-NETLIB_BUILD_EXPERIMENTS)
92
+add_subdirectory(libs/network/experiment)
93
+ endif (CPP-NETLIB_BUILD_EXPERIMENTS)
94
if (NOTMSVCANDCPP-NETLIB_BUILD_TESTS)
95
add_subdirectory(libs/mime/test)
96
endif(NOTMSVCANDCPP-NETLIB_BUILD_TESTS)