From 8180cc8b048d9e6f146d0c10abdd877477a94eb0 Mon Sep 17 00:00:00 2001 From: Lauchmelder Date: Mon, 15 Jun 2020 12:30:28 +0200 Subject: [PATCH] Fixed DDLGeneratorTools flag --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3831cb7..41cde95 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -108,7 +108,9 @@ if(ddl_cmake_enable_tests) add_subdirectory(test) endif() -add_subdirectory(ddlgenerators) +if(ddl_cmake_enable_ddl_generator_tools) + add_subdirectory(ddlgenerators) +endif() if(ddl_cmake_enable_installation) install(TARGETS ddl ARCHIVE DESTINATION lib)