diff options
| author | 2022-04-28 14:54:54 +0000 | |
|---|---|---|
| committer | 2022-04-28 14:54:54 +0000 | |
| commit | a9153f1615a842cfb9e9bcda4d9071e202618569 (patch) | |
| tree | c32bc32babc539accedce9f3a125b4d2c2413b9a /CMakeLists.txt | |
| parent | aaecbb75bbfe10ec44a3fff83bda6828da4b4518 (diff) | |
| download | OneRoll-a9153f1615a842cfb9e9bcda4d9071e202618569.tar.gz OneRoll-a9153f1615a842cfb9e9bcda4d9071e202618569.zip | |
Remove support for IRC and webserver
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 61b1ce8..e4d0536 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,6 @@ enable_testing(true) include_directories(${CMAKE_CURRENT_SOURCE_DIR} result node) option(BUILD_CLI OFF) -option(BUILD_IRC OFF) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) @@ -104,10 +103,6 @@ IF(BUILD_CLI) add_subdirectory(cli) ENDIF() -IF(BUILD_IRC) - add_subdirectory(irc) -ENDIF() - if(TESTS) add_subdirectory( tests ) endif() |