From 721bbf4d5217d3e13dafaf082c0eea5c297b9ee9 Mon Sep 17 00:00:00 2001 From: Hugo Jean Ponsin Date: Tue, 28 Jul 2026 13:31:14 +0200 Subject: [PATCH] hiding itcPressureOptimizerScfe target behind a flag --- CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 52be0fe..3da4b68 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -60,6 +60,7 @@ target_include_directories( ################################################################################ ## Frontend ################################################################################ +if(${BUILD_FRONTEND}) add_executable(itcPressureOptimizerScfe src/frontend/itc_pressure_optimizer_scfe.cpp @@ -90,4 +91,7 @@ target_link_libraries( install( TARGETS itcPressureOptimizerScfe RUNTIME DESTINATION bin -) \ No newline at end of file +) + +endif() +