From a6ffa1a82a30b302263e7f9affb77cbfd1383fff Mon Sep 17 00:00:00 2001 From: gugus Date: Thu, 29 Sep 2011 14:59:20 +0200 Subject: [PATCH] Allow not to build the launcher --- CMakeLists.txt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f4be17e90..a1b054853 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)