diff --git a/CMakeLists.txt b/CMakeLists.txt index f4be17e904..a1b054853a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -514,7 +514,10 @@ if (BUILD_ESMTOOL) add_subdirectory( apps/esmtool ) endif() -add_subdirectory( apps/launcher ) +option(BUILD_LAUNCHER "build Launcher inspector" ON) +if (BUILD_LAUNCHER) + add_subdirectory( apps/launcher ) +endif() if (WIN32) if (MSVC)