2022-07-13 19:33:48 +03:00
|
|
|
PROJECT(qucs-suite CXX)
|
2023-05-25 09:09:49 +03:00
|
|
|
cmake_minimum_required(VERSION 3.10)
|
|
|
|
cmake_policy(VERSION 3.10)
|
2022-07-13 19:33:48 +03:00
|
|
|
|
2023-02-13 21:50:15 +03:00
|
|
|
set(QUCS_NAME "qucs-s")
|
|
|
|
|
|
|
|
# Prohibit in-source builds
|
|
|
|
if("${CMAKE_BINARY_DIR}" STREQUAL "${CMAKE_SOURCE_DIR}")
|
|
|
|
message(
|
|
|
|
FATAL_ERROR
|
|
|
|
"QUCS-S: You cannot build in a source directory (or any directory with "
|
|
|
|
"CMakeLists.txt file). Please make a build subdirectory. Feel free to "
|
|
|
|
"remove CMakeCache.txt and CMakeFiles.")
|
|
|
|
endif()
|
2022-07-13 19:33:48 +03:00
|
|
|
|
|
|
|
file (STRINGS "${qucs-suite_SOURCE_DIR}/VERSION" QUCS_VERSION)
|
|
|
|
message(STATUS "Configuring Qucs: VERSION ${QUCS_VERSION}")
|
|
|
|
|
2024-02-05 13:02:57 +03:00
|
|
|
set(GIT "")
|
2023-11-29 12:18:20 +03:00
|
|
|
if(EXISTS ${CMAKE_SOURCE_DIR}/.git )
|
2023-02-13 21:50:15 +03:00
|
|
|
find_package(Git)
|
2022-07-13 19:33:48 +03:00
|
|
|
# Get the latest abbreviated commit hash of the working branch
|
|
|
|
execute_process(
|
|
|
|
COMMAND ${GIT_EXECUTABLE} log --pretty=format:%h -n 1u
|
|
|
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
|
|
|
OUTPUT_VARIABLE GIT_COMMIT_HASH
|
|
|
|
)
|
|
|
|
set(GIT ${GIT_COMMIT_HASH})
|
|
|
|
message(STATUS "Found Git repository, last commit hash: ${GIT}")
|
2023-02-13 21:50:15 +03:00
|
|
|
endif()
|
|
|
|
|
|
|
|
message(STATUS "${PROJECT_NAME} ${CMAKE_INSTALL_PREFIX} ${qucs-suite_BINARY_DIR}" )
|
|
|
|
|
2023-02-15 10:35:06 +03:00
|
|
|
set(QT_DEFAULT_MAJOR_VERSION 6)
|
2023-02-13 21:50:15 +03:00
|
|
|
find_package(QT NAMES Qt6 Qt5 REQUIRED COMPONENTS Core Gui Widgets LinguistTools)
|
|
|
|
find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Core Gui Widgets LinguistTools)
|
2023-02-15 10:35:06 +03:00
|
|
|
message(STATUS "QT Major Version: " ${QT_VERSION_MAJOR})
|
2023-02-13 21:50:15 +03:00
|
|
|
|
|
|
|
add_definitions(${QT_DEFINITIONS})
|
|
|
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
|
|
|
|
|
|
if(NOT CMAKE_BUILD_TYPE STREQUAL "Debug")
|
|
|
|
add_compile_definitions(QT_NO_DEBUG_OUTPUT)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
add_subdirectory( qucs )
|
2023-05-21 09:21:00 +03:00
|
|
|
add_subdirectory( converter )
|
2023-02-13 21:50:15 +03:00
|
|
|
add_subdirectory( qucs-activefilter )
|
|
|
|
add_subdirectory( qucs-attenuator )
|
|
|
|
#add_subdirectory( qucs-doc )
|
|
|
|
add_subdirectory( qucs-filter )
|
|
|
|
add_subdirectory( library )
|
|
|
|
add_subdirectory( qucs-transcalc )
|
|
|
|
add_subdirectory( qucs-powercombining )
|
|
|
|
#add_subdirectory( examples )
|
2023-07-24 14:02:56 +07:00
|
|
|
|
|
|
|
IF (UPDATE_TRANSLATIONS)
|
|
|
|
file(GLOB_RECURSE FILES_TO_TRANSLATE "*.cpp" "*.h" "*.ui")
|
|
|
|
ENDIF (UPDATE_TRANSLATIONS)
|
2023-02-13 21:50:15 +03:00
|
|
|
add_subdirectory( translations )
|
|
|
|
|
|
|
|
install(DIRECTORY "examples" DESTINATION "share/${QUCS_NAME}")
|
2022-07-13 19:33:48 +03:00
|
|
|
|
|
|
|
#
|
|
|
|
# Custom uninstall target
|
|
|
|
#
|
|
|
|
configure_file(
|
|
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/cmake/uninstall.cmake.in"
|
|
|
|
"${CMAKE_CURRENT_BINARY_DIR}/uninstall.cmake"
|
|
|
|
IMMEDIATE @ONLY)
|
|
|
|
|
|
|
|
add_custom_target(uninstall
|
|
|
|
COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/uninstall.cmake)
|
|
|
|
|
|
|
|
|