File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ if(POLICY CMP0169)
66endif ()
77
88include (CheckIncludeFile)
9+ include (FeatureSummary)
910
1011option (PROXYRES_CURL "Enable support for downloading PAC scripts using curl." OFF )
1112option (PROXYRES_DUKTAPE "Use embedded Duktape JavaScript engine." OFF )
@@ -240,7 +241,6 @@ if(PROXYRES_CODE_COVERAGE AND NOT MSVC)
240241endif ()
241242
242243if (PROXYRES_USE_CXX)
243- message (STATUS "Use the C++ compiler to compile (PROXYRES_USE_CXX=ON)" )
244244 set_source_files_properties (${PROXYRES_SRCS} PROPERTIES LANGUAGE CXX)
245245 if (CMAKE_CXX_COMPILER_ID MATCHES "AppleClang|Clang" )
246246 set (CMAKE_CXX_FLAGS "-Wno-deprecated ${CMAKE_CXX_FLAGS} " )
@@ -417,3 +417,14 @@ if(PROXYRES_BUILD_CLI OR PROXYRES_BUILD_TESTS)
417417
418418 add_subdirectory (test )
419419endif ()
420+
421+ add_feature_info(PROXYRES_CURL PROXYRES_CURL "Enable support for downloading PAC scripts using curl." )
422+ add_feature_info(PROXYRES_DUKTAPE PROXYRES_DUKTAPE "Use embedded Duktape JavaScript engine." )
423+ add_feature_info(PROXYRES_EXECUTE PROXYRES_EXECUTE "Enable support for PAC script execution." )
424+
425+ add_feature_info(PROXYRES_USE_CXX PROXYRES_USE_CXX "Use the C++ compiler to compile proxyres." )
426+
427+ add_feature_info(PROXYRES_BUILD_CLI PROXYRES_BUILD_CLI "Build command line utility." )
428+ add_feature_info(PROXYRES_BUILD_TESTS PROXYRES_BUILD_TESTS "Build Googletest unit tests project." )
429+
430+ feature_summary(WHAT ALL )
You can’t perform that action at this time.
0 commit comments