2022-04-03 22:55:22 +01:00
|
|
|
cmake_minimum_required(VERSION 3.22)
|
2021-04-04 21:04:12 +01:00
|
|
|
|
2022-09-24 19:08:15 +01:00
|
|
|
project(Bloom LANGUAGES CXX VERSION 0.11.1)
|
2022-04-02 17:12:40 +01:00
|
|
|
set(CMAKE_PROJECT_HOMEPAGE_URL "https://bloom.oscillate.io")
|
|
|
|
|
|
2021-04-04 21:04:12 +01:00
|
|
|
set(CMAKE_VERBOSE_MAKEFILE off)
|
|
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
|
|
|
set(ENABLE_SANITIZERS off)
|
|
|
|
|
|
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
|
set(AUTOGEN_BUILD_DIR ../build/)
|
|
|
|
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/build/bin")
|
|
|
|
|
|
2022-07-23 02:28:41 +01:00
|
|
|
find_package(yaml-cpp 0.7.0 REQUIRED)
|
2022-04-03 21:46:00 +01:00
|
|
|
find_package(Qt6Core REQUIRED)
|
|
|
|
|
find_package(Qt6Gui REQUIRED)
|
|
|
|
|
find_package(Qt6Widgets REQUIRED)
|
|
|
|
|
find_package(Qt6Xml REQUIRED)
|
|
|
|
|
find_package(Qt6Svg REQUIRED)
|
|
|
|
|
find_package(Qt6UiTools REQUIRED)
|
|
|
|
|
find_package(Qt6SvgWidgets REQUIRED)
|
|
|
|
|
find_package(Qt6Network REQUIRED)
|
2021-04-04 21:04:12 +01:00
|
|
|
|
2022-04-17 23:56:57 +01:00
|
|
|
# Bloom is distributed with some third-party dependencies (in the form of shared objects). These dependencies are
|
|
|
|
|
# distributed with Bloom for various reasons (licensing, availability in some package managers, etc).
|
|
|
|
|
#
|
|
|
|
|
# The shared objects are located in bin/lib (relative to Bloom's installation directory). For this reason, we instruct
|
|
|
|
|
# the dynamic linker to look for any of Bloom's shared object dependencies in that location first. We do this by
|
|
|
|
|
# including '$ORIGIN/lib' in the RPATH of Bloom's binary executable.
|
2021-04-14 23:17:30 +01:00
|
|
|
set(CMAKE_SKIP_BUILD_RPATH false)
|
2021-04-04 21:04:12 +01:00
|
|
|
set(CMAKE_BUILD_RPATH_USE_ORIGIN true)
|
2022-04-02 17:10:58 +01:00
|
|
|
set(CMAKE_INSTALL_RPATH "\$ORIGIN/lib:/usr/local/lib")
|
2021-04-04 21:04:12 +01:00
|
|
|
set(CMAKE_BUILD_RPATH ${CMAKE_INSTALL_RPATH})
|
|
|
|
|
|
2022-01-22 16:46:41 +00:00
|
|
|
add_compile_definitions(BLOOM_VERSION="${CMAKE_PROJECT_VERSION}")
|
|
|
|
|
|
2022-04-02 17:13:17 +01:00
|
|
|
if (${CMAKE_BUILD_TYPE} MATCHES "Debug")
|
2022-01-02 21:23:50 +00:00
|
|
|
add_compile_definitions(BLOOM_DEBUG_BUILD)
|
|
|
|
|
|
|
|
|
|
# BLOOM_COMPILED_RESOURCES_PATH_OVERRIDE can be used to override the file path used for compiled resources.
|
|
|
|
|
# We override this path in debug builds to avoid using compiled resources. This makes debugging and small tweaks
|
|
|
|
|
# a lot easier, as it removes the need to recompile for each tweak.
|
|
|
|
|
# CAUTION: Although convenient, this does add a limitation; the debug build can only be run on the same machine
|
|
|
|
|
# that compiled it. Or a machine that has the Bloom source located in the same place.
|
|
|
|
|
# See Paths::compiledResourcesPath() for more.
|
|
|
|
|
add_compile_definitions(BLOOM_COMPILED_RESOURCES_PATH_OVERRIDE="${CMAKE_CURRENT_SOURCE_DIR}")
|
|
|
|
|
|
|
|
|
|
# BLOOM_HOME_DOMAIN_NAME_OVERRIDE can be used to override the domain name used in URLs to the Bloom website.
|
|
|
|
|
# I (Nav) use this in debug builds, so I can test local changes that involve the Bloom website as well as Bloom
|
|
|
|
|
# itself. Other users can comment out this override if they don't have a copy of the Bloom website running on their
|
|
|
|
|
# local machine. See Paths::homeDomainName() for more.
|
|
|
|
|
add_compile_definitions(BLOOM_HOME_DOMAIN_NAME_OVERRIDE="http://bloom.local")
|
|
|
|
|
|
|
|
|
|
# CMAKE_BUILD_RPATH needs to point to the local Qt installation, to use Gammaray during development.
|
|
|
|
|
# This is because the distributed Qt binaries may not be compatible with the local installation of Gammaray
|
2022-04-29 22:12:47 +01:00
|
|
|
# If you don't intend to use Gammaray, you can comment this out
|
2022-07-13 20:37:35 +01:00
|
|
|
set(CMAKE_BUILD_RPATH /opt/Qt/6.2.4/gcc_64/lib/)
|
2022-01-02 21:23:50 +00:00
|
|
|
endif()
|
|
|
|
|
|
2022-04-29 22:12:47 +01:00
|
|
|
add_executable(Bloom)
|
|
|
|
|
|
|
|
|
|
target_sources(
|
|
|
|
|
Bloom
|
|
|
|
|
PRIVATE
|
|
|
|
|
build/resources/TargetDescriptionFiles/AVR/Mapping.json
|
|
|
|
|
)
|
|
|
|
|
|
2022-07-13 20:39:44 +01:00
|
|
|
qt_add_resources(
|
|
|
|
|
Bloom
|
|
|
|
|
"ApplicationResources"
|
|
|
|
|
PREFIX
|
|
|
|
|
"/compiled"
|
|
|
|
|
FILES
|
2022-07-23 15:42:16 +01:00
|
|
|
"./resources/bloom.template.yaml"
|
2022-07-13 20:39:44 +01:00
|
|
|
"./resources/help.txt"
|
|
|
|
|
"./resources/gdbHelpMonitorInfo.txt"
|
|
|
|
|
)
|
|
|
|
|
|
2022-04-03 21:36:43 +01:00
|
|
|
add_subdirectory(src)
|
2021-04-04 21:04:12 +01:00
|
|
|
|
|
|
|
|
set_target_properties(Bloom PROPERTIES OUTPUT_NAME bloom)
|
|
|
|
|
target_include_directories(Bloom PUBLIC ./)
|
2022-07-23 02:28:41 +01:00
|
|
|
target_include_directories(Bloom PUBLIC ${YAML_CPP_INCLUDE_DIR})
|
2021-12-30 13:58:46 +00:00
|
|
|
|
2022-04-02 17:13:17 +01:00
|
|
|
if (${CMAKE_BUILD_TYPE} MATCHES "Debug")
|
2021-12-30 13:58:46 +00:00
|
|
|
# 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
|
|
|
|
|
# you don't possess the Qt source code on your machine. You may need to invalidate CMake cache.
|
2022-07-13 20:37:35 +01:00
|
|
|
target_include_directories(Bloom PUBLIC /opt/Qt/6.2.4/Src)
|
2021-12-30 13:58:46 +00:00
|
|
|
endif()
|
2021-04-04 21:04:12 +01:00
|
|
|
|
|
|
|
|
target_link_libraries(Bloom -lstdc++fs)
|
|
|
|
|
target_link_libraries(Bloom -lpthread)
|
|
|
|
|
target_link_libraries(Bloom -lusb-1.0)
|
|
|
|
|
target_link_libraries(Bloom -lhidapi-libusb)
|
2022-09-15 00:30:59 +01:00
|
|
|
target_link_libraries(Bloom -lprocps)
|
2022-07-23 02:28:41 +01:00
|
|
|
target_link_libraries(Bloom ${YAML_CPP_LIBRARIES})
|
2021-08-18 22:49:23 +01:00
|
|
|
target_link_libraries(Bloom Qt6::Core)
|
|
|
|
|
target_link_libraries(Bloom Qt6::Gui)
|
|
|
|
|
target_link_libraries(Bloom Qt6::UiTools)
|
|
|
|
|
target_link_libraries(Bloom Qt6::Widgets)
|
|
|
|
|
target_link_libraries(Bloom Qt6::Xml)
|
|
|
|
|
target_link_libraries(Bloom Qt6::Svg)
|
2021-08-20 22:51:47 +01:00
|
|
|
target_link_libraries(Bloom Qt6::SvgWidgets)
|
2021-10-18 01:04:40 +01:00
|
|
|
target_link_libraries(Bloom Qt6::Network)
|
2021-04-04 21:04:12 +01:00
|
|
|
|
|
|
|
|
target_compile_options(
|
|
|
|
|
Bloom
|
|
|
|
|
PUBLIC -std=c++2a
|
|
|
|
|
PUBLIC -pedantic
|
|
|
|
|
PUBLIC -Wconversion
|
2021-10-21 19:25:58 +01:00
|
|
|
PUBLIC -Wpessimizing-move
|
|
|
|
|
PUBLIC -Wredundant-move
|
2022-05-03 20:01:32 +01:00
|
|
|
PUBLIC -Wsuggest-override
|
2021-04-04 21:04:12 +01:00
|
|
|
PUBLIC -fno-sized-deallocation
|
|
|
|
|
PUBLIC $<$<CONFIG:DEBUG>:-g>
|
2022-06-22 22:23:56 +01:00
|
|
|
# PUBLIC $<$<CONFIG:DEBUG>:-O0>
|
|
|
|
|
PUBLIC $<$<CONFIG:DEBUG>:-O3>
|
2021-08-20 22:52:39 +01:00
|
|
|
PUBLIC $<$<CONFIG:RELEASE>:-Ofast>
|
2021-04-04 21:04:12 +01:00
|
|
|
PUBLIC $<$<CONFIG:DEBUG>:-fno-inline>
|
|
|
|
|
PUBLIC $<$<CONFIG:DEBUG>:-fkeep-static-functions>
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
target_link_options(
|
|
|
|
|
Bloom
|
2022-07-13 20:38:14 +01:00
|
|
|
PUBLIC [=[-Wl,-z,origin]=] #,--verbose
|
2021-04-04 21:04:12 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
if (${ENABLE_SANITIZERS})
|
|
|
|
|
message(WARNING "Sanitizers have been enabled")
|
|
|
|
|
|
|
|
|
|
# Some sanitizers are not compatible with each other.
|
|
|
|
|
target_compile_options(
|
|
|
|
|
Bloom
|
|
|
|
|
PUBLIC "-fsanitize=address"
|
|
|
|
|
#PUBLIC "-fsanitize=undefined"
|
2022-04-03 22:55:22 +01:00
|
|
|
# PUBLIC "-fsanitize=thread"
|
|
|
|
|
# PUBLIC "$<$<BOOL:${ENABLE_SANITIZERS}>:-fsanitize=address>"
|
|
|
|
|
# PUBLIC "$<$<BOOL:${ENABLE_SANITIZERS}>:-fsanitize=undefined>"
|
|
|
|
|
# PUBLIC "$<$<BOOL:${ENABLE_SANITIZERS}>:-fsanitize=integer-divide-by-zero>"
|
|
|
|
|
# PUBLIC "$<$<BOOL:${ENABLE_SANITIZERS}>:-fsanitize=unreachable>"
|
|
|
|
|
# PUBLIC "$<$<BOOL:${ENABLE_SANITIZERS}>:-fsanitize=vla-bound>"
|
|
|
|
|
# PUBLIC "$<$<BOOL:${ENABLE_SANITIZERS}>:-fsanitize=null>"
|
|
|
|
|
# PUBLIC "$<$<BOOL:${ENABLE_SANITIZERS}>:-fsanitize=return>"
|
|
|
|
|
# PUBLIC "$<$<BOOL:${ENABLE_SANITIZERS}>:-fsanitize=signed-integer-overflow>"
|
|
|
|
|
# PUBLIC "$<$<BOOL:${ENABLE_SANITIZERS}>:-fsanitize=bounds>"
|
|
|
|
|
# PUBLIC "$<$<BOOL:${ENABLE_SANITIZERS}>:-fsanitize=alignment>"
|
|
|
|
|
# PUBLIC "$<$<BOOL:${ENABLE_SANITIZERS}>:-fsanitize=object-size>"
|
|
|
|
|
# PUBLIC "$<$<BOOL:${ENABLE_SANITIZERS}>:-fsanitize=float-divide-by-zero>"
|
|
|
|
|
# PUBLIC "$<$<BOOL:${ENABLE_SANITIZERS}>:-fsanitize=float-cast-overflow>"
|
|
|
|
|
# PUBLIC "$<$<BOOL:${ENABLE_SANITIZERS}>:-fsanitize=nonnull-attribute>"
|
|
|
|
|
# PUBLIC "$<$<BOOL:${ENABLE_SANITIZERS}>:-fsanitize=returns-nonnull-attribute>"
|
|
|
|
|
# PUBLIC "$<$<BOOL:${ENABLE_SANITIZERS}>:-fsanitize=bool>"
|
|
|
|
|
# PUBLIC "$<$<BOOL:${ENABLE_SANITIZERS}>:-fsanitize=enum>"
|
|
|
|
|
# PUBLIC "$<$<BOOL:${ENABLE_SANITIZERS}>:-fsanitize=vptr>"
|
2021-04-04 21:04:12 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
target_link_libraries(
|
|
|
|
|
Bloom
|
|
|
|
|
"-fsanitize=address"
|
2022-04-03 22:55:22 +01:00
|
|
|
# "-fsanitize=undefined"
|
|
|
|
|
# "-fsanitize=thread"
|
2021-04-04 21:04:12 +01:00
|
|
|
)
|
|
|
|
|
endif()
|
|
|
|
|
|
2022-04-03 22:55:22 +01:00
|
|
|
# Copy AVR8 TDFs to build directory and construct JSON mapping of AVR8 target signatures to TDF paths.
|
|
|
|
|
add_custom_command(
|
|
|
|
|
OUTPUT
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/build/resources/TargetDescriptionFiles/AVR/Mapping.json
|
|
|
|
|
DEPENDS
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/build/scripts/Avr8TargetDescriptionFiles.php
|
|
|
|
|
COMMAND echo 'Processing AVR target description files.'
|
|
|
|
|
COMMAND
|
|
|
|
|
php ${CMAKE_CURRENT_SOURCE_DIR}/build/scripts/Avr8TargetDescriptionFiles.php
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# Copy resources/fonts into build/resources/Fonts
|
|
|
|
|
add_custom_command(
|
|
|
|
|
TARGET Bloom
|
|
|
|
|
POST_BUILD
|
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy_directory
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/resources/fonts
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/build/resources/Fonts
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# Copy resources/udevrules/99-bloom.rules to build/resources/UDevRules/99-bloom.rules
|
|
|
|
|
add_custom_command(
|
|
|
|
|
TARGET Bloom
|
|
|
|
|
POST_BUILD
|
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/resources/udevrules/99-bloom.rules
|
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/build/resources/UDevRules/99-bloom.rules
|
|
|
|
|
)
|
|
|
|
|
|
2022-05-08 19:57:20 +01:00
|
|
|
include(./cmake/Installing.cmake)
|
2021-04-04 21:04:12 +01:00
|
|
|
|
2022-05-08 19:57:20 +01:00
|
|
|
include(./cmake/Packaging.cmake)
|