aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrowe67 <[email protected]>2023-07-13 10:02:57 +0930
committerDavid Rowe <[email protected]>2023-07-13 10:02:57 +0930
commitad8fd510e7de8447abde0b51c12e8364aa052349 (patch)
treeff3c544f37b1563e3e5b3a8872b1aedb453ef5ae
parent3532e024e2412048b172cdd4ffab79bd7cd1e87b (diff)
remove CMake INSTALL_EXAMPLES option, as directories it cites no longer exist
-rw-r--r--CMakeLists.txt7
1 files changed, 0 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8ba9220..82e7f7a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -118,12 +118,6 @@ endif(MINGW)
option(BUILD_SHARED_LIBS
"Build shared library. Set to OFF for static library." ON)
option(UNITTEST "Build unittest binaries." OFF)
-option(INSTALL_EXAMPLES "Install example code." OFF)
-if(INSTALL_EXAMPLES)
- install(DIRECTORY octave raw script wav
- USE_SOURCE_PERMISSIONS
- DESTINATION ${CMAKE_INSTALL_DATADIR}/codec2)
-endif()
# LPCNet needs to be bootstraped because codec2 and freedvlpcnet are
# cross dependent.
@@ -135,7 +129,6 @@ if(LPCNET_BUILD_DIR)
endif()
-
include(CheckIncludeFiles)
check_include_files("stdlib.h" HAVE_STDLIB_H)
check_include_files("string.h" HAVE_STRING_H)