# # Brisk # # Cross-platform application framework # -------------------------------------------------------------- # # Copyright (C) 2025 Brisk Developers # # This file is part of the Brisk library. # # Brisk is dual-licensed under the GNU General Public License, version 2 (GPL-2.0+), and a commercial license. You may # use, modify, and distribute this software under the terms of the GPL-2.0+ license if you comply with its conditions. # # You should have received a copy of the GNU General Public License along with this program. If not, see # . # # If you do not wish to be bound by the GPL-2.0+ license, you must purchase a commercial license. For commercial # licensing options, please visit: https://brisklib.com # cmake_minimum_required(VERSION 3.22) project(calc) if (NOT _BRISK_INCLUDE_DIR) find_package(Brisk CONFIG REQUIRED) endif () add_subdirectory(decNumber) add_executable(calc calc.cpp) target_link_libraries(calc PRIVATE brisk-widgets brisk-executable decNumber) brisk_target_remove_resources(calc fonts/default/bold.ttf fonts/default/light.ttf) brisk_setup_executable(calc)