From 948efe468793a5ed64d3ff84c532c3075be52f36 Mon Sep 17 00:00:00 2001 From: EndrII Date: Tue, 18 Jan 2022 16:50:09 +0300 Subject: [PATCH] fix build --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6389a06..53dc23c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -35,7 +35,6 @@ option(DOCTOR_PILL_GUI "Enable gui qml model for build" ON) option(DOCTOR_PILL_TESTS "Enable tests of this library" ON) option(DOCTOR_PILL_EXAMPLE "Enable example app of this library" ON) - SET(TARGET_DIR "${CMAKE_SOURCE_DIR}/Distro") file(MAKE_DIRECTORY ${TARGET_DIR}) @@ -58,7 +57,7 @@ endif() initAll() if (DOCTOR_PILL_GUI) - add_definitions(-DDOCTOR_PILL_GUI ON) + add_definitions(-DDOCTOR_PILL_GUI) else() set(DOCTOR_PILL_EXAMPLE OFF) endif()