diff --git a/CMakeLists.txt b/CMakeLists.txt index 29c1d32..3723ac1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -55,7 +55,10 @@ if (${BUILD_PYTHON}) endif() ## Executables -add_subdirectory("programs") +option(CSV_BUILD_PROGRAMS "Allow to disable building of programs" ON) +if (CSV_BUILD_PROGRAMS) + add_subdirectory("programs") +endif() ## Developer settings if (CSV_DEVELOPER)