From 0294cb5a9449a50729e1c569391933501442fea8 Mon Sep 17 00:00:00 2001 From: Nav Date: Sat, 2 Apr 2022 17:13:17 +0100 Subject: [PATCH] Tidying --- CMakeLists.txt | 4 ++-- resources/packaging/description.txt | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) delete mode 100644 resources/packaging/description.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index e6c5a8de..7028eae7 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,7 +37,7 @@ set(CMAKE_BUILD_RPATH ${CMAKE_INSTALL_RPATH}) add_compile_definitions(BLOOM_VERSION="${CMAKE_PROJECT_VERSION}") -if (${CMAKE_BUILD_TYPE} STREQUAL "Debug") +if (${CMAKE_BUILD_TYPE} MATCHES "Debug") add_compile_definitions(BLOOM_DEBUG_BUILD) # BLOOM_COMPILED_RESOURCES_PATH_OVERRIDE can be used to override the file path used for compiled resources. @@ -223,7 +223,7 @@ add_executable(Bloom set_target_properties(Bloom PROPERTIES OUTPUT_NAME bloom) target_include_directories(Bloom PUBLIC ./) -if (${CMAKE_BUILD_TYPE} STREQUAL "Debug") +if (${CMAKE_BUILD_TYPE} MATCHES "Debug") # When Qt isn't playing nice, it's very useful to have access to the Qt source code, to step through. # The QT source directory is specified as an include path just so that CLion can navigate to the Qt implementation # files, during debugging. No QT headers are actually included via this method. Feel free to comment this out if diff --git a/resources/packaging/description.txt b/resources/packaging/description.txt deleted file mode 100644 index 70b4bc43..00000000 --- a/resources/packaging/description.txt +++ /dev/null @@ -1 +0,0 @@ -A debug interface for embedded systems development on Linux. Bloom supports most Microchip AVR8 targets, along with numerous EDBG-based debug tools. \ No newline at end of file