summaryrefslogtreecommitdiffhomepage
path: root/dev/examples/cgi/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'dev/examples/cgi/CMakeLists.txt')
-rw-r--r--dev/examples/cgi/CMakeLists.txt16
1 files changed, 0 insertions, 16 deletions
diff --git a/dev/examples/cgi/CMakeLists.txt b/dev/examples/cgi/CMakeLists.txt
deleted file mode 100644
index 9c3cbf6..0000000
--- a/dev/examples/cgi/CMakeLists.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-
-cmake_minimum_required(VERSION 3.15...3.31)
-
-project(
- CGI
- VERSION 1.0
- LANGUAGES CXX)
-
-find_package(Boost REQUIRED COMPONENTS container)
-
-add_executable(CGI cgi.cc)
-
-target_link_libraries(CGI PRIVATE Boost::container)
-
-set_property(TARGET CGI PROPERTY CXX_STANDARD 20)
-target_include_directories(CGI PUBLIC ../../)