File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ project(CPP-NETLIB)
8
8
9
9
option ( CPP-NETLIB_BUILD_SHARED_LIBS "Build cpp-netlib as shared libraries." OFF )
10
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 )
11
12
option ( CPP-NETLIB_BUILD_EXAMPLES "Build the cpp-netlib project examples." ON )
12
13
13
14
include (GNUInstallDirs )
@@ -87,7 +88,9 @@ if (Boost_FOUND)
87
88
if (CPP-NETLIB_BUILD_TESTS )
88
89
add_subdirectory (libs/network/test )
89
90
endif (CPP-NETLIB_BUILD_TESTS )
90
- add_subdirectory (libs/network/experiment )
91
+ if (CPP-NETLIB_BUILD_EXPERIMENTS )
92
+ add_subdirectory (libs/network/experiment )
93
+ endif (CPP-NETLIB_BUILD_EXPERIMENTS )
91
94
if (NOT MSVC AND CPP-NETLIB_BUILD_TESTS )
92
95
add_subdirectory (libs/mime/test )
93
96
endif (NOT MSVC AND CPP-NETLIB_BUILD_TESTS )
You can’t perform that action at this time.
0 commit comments