mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00

1. Offline HTML excluded from Qucs-S distribution (if WITH_SPICE enabled) 2. F1 shortcut points to the main Qucs-S help page at the readthedocs service. 3. Added menu etntry for the mainline Qucs help
79 lines
1.9 KiB
CMake
Executable File
79 lines
1.9 KiB
CMake
Executable File
PROJECT(qucs-suite CXX)
|
|
CMAKE_MINIMUM_REQUIRED(VERSION 2.8)
|
|
cmake_policy(VERSION 2.8)
|
|
|
|
IF(WITH_SPICE)
|
|
MESSAGE("SPICE support enabled")
|
|
SET(QUCS_NAME "qucs-s")
|
|
ELSE()
|
|
SET(QUCS_NAME "qucs")
|
|
ENDIF()
|
|
|
|
file (STRINGS "${qucs-suite_SOURCE_DIR}/VERSION" QUCS_VERSION)
|
|
message(STATUS "Configuring Qucs: VERSION ${QUCS_VERSION}")
|
|
|
|
set(GIT unknown)
|
|
IF(EXISTS ${CMAKE_SOURCE_DIR}/../.git )
|
|
FIND_PACKAGE(Git)
|
|
# 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}")
|
|
ENDIF()
|
|
|
|
message(STATUS "${PROJECT_NAME} ${CMAKE_INSTALL_PREFIX}
|
|
${qucs-suite_BINARY_DIR}" )
|
|
|
|
FIND_PACKAGE( Qt4 REQUIRED )
|
|
|
|
SET( QT_USE_QT TRUE )
|
|
#SET( QT_USE_QTXML TRUE )
|
|
#SET( QT_USE_QTSVG TRUE )
|
|
SET( QT_USE_QTCORE TRUE )
|
|
SET( QT_USE_QTGUI TRUE )
|
|
|
|
SET( QT_USE_QTSCRIPT TRUE )
|
|
|
|
SET( QT_DEBUG TRUE)
|
|
|
|
INCLUDE( ${QT_USE_FILE} )
|
|
|
|
ADD_DEFINITIONS(${QT_DEFINITIONS})
|
|
|
|
|
|
IF(NOT WITH_SPICE)
|
|
ADD_SUBDIRECTORY( qucs-attenuator )
|
|
ADD_SUBDIRECTORY( qucs-edit )
|
|
ADD_SUBDIRECTORY( qucs-help )
|
|
ADD_SUBDIRECTORY( qucs-transcalc )
|
|
ADD_SUBDIRECTORY( qucs-rescodes )
|
|
ADD_SUBDIRECTORY( contrib )
|
|
ENDIF()
|
|
|
|
ADD_SUBDIRECTORY( qucs )
|
|
ADD_SUBDIRECTORY( qucs-activefilter )
|
|
#ADD_SUBDIRECTORY( qucs-doc )
|
|
ADD_SUBDIRECTORY( qucs-filter )
|
|
ADD_SUBDIRECTORY( qucs-lib )
|
|
#ADD_SUBDIRECTORY( examples )
|
|
ADD_SUBDIRECTORY( translations )
|
|
|
|
INSTALL(DIRECTORY "../examples" DESTINATION "share/${QUCS_NAME}")
|
|
|
|
#
|
|
# 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)
|
|
|
|
|