2023-05-25 09:09:49 +03:00
|
|
|
cmake_minimum_required(VERSION 3.10)
|
2024-07-05 23:49:16 +03:00
|
|
|
PROJECT(qucs-suite CXX)
|
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
|
|
|
|
2024-02-09 18:13:17 +03:00
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|
|
|
|
2022-07-13 19:33:48 +03:00
|
|
|
file (STRINGS "${qucs-suite_SOURCE_DIR}/VERSION" QUCS_VERSION)
|
2024-08-26 17:45:13 +03:00
|
|
|
|
|
|
|
if(DEFINED CI_VERSION)
|
|
|
|
set(PROJECT_VERSION "${CI_VERSION}")
|
|
|
|
else()
|
|
|
|
set(PROJECT_VERSION "${QUCS_VERSION}")
|
|
|
|
endif()
|
|
|
|
|
|
|
|
message(STATUS "Configuring Qucs: VERSION ${PROJECT_VERSION}")
|
2022-07-13 19:33:48 +03:00
|
|
|
|
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(
|
2024-07-05 23:49:16 +03:00
|
|
|
COMMAND ${GIT_EXECUTABLE} log --pretty=format:%h -n 1
|
2022-07-13 19:33:48 +03:00
|
|
|
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}" )
|
|
|
|
|
2024-03-06 10:21:32 +03:00
|
|
|
if(WITH_QT6)
|
|
|
|
set(QT_VERSION_MAJOR 6)
|
|
|
|
else()
|
|
|
|
set(QT_VERSION_MAJOR 5)
|
|
|
|
endif()
|
2024-08-21 20:28:05 +03:00
|
|
|
|
2023-02-13 21:50:15 +03:00
|
|
|
find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Core Gui Widgets LinguistTools)
|
2024-07-26 12:55:50 +03:00
|
|
|
set(QT_VERSION ${Qt${QT_VERSION_MAJOR}Core_VERSION})
|
|
|
|
|
|
|
|
message(STATUS "Qt Version: " ${QT_VERSION})
|
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 )
|
2024-03-19 10:13:44 +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 )
|
S-parameter viewer - Initial development (squashed)
This commit contains the first draft of the user interface
Read Touchstone files
It was implemented a basic function to read Touchstone files.
It can only read Touchstone files up to 4 ports and only S-parameter data.
Please see "Touchstone Specification, Version 2.1, ratified January 26 2024 by the IBIS Open Forum": https://ibis.org/touchstone_ver2.1/
Add QScrollArea widgets to the files and traces lists
Large number of files and traces are expected, so there is a need for scrollable areas in the files and traces lists.
Basic plotting structure
Add default behaviour when loading one single s2p
A default behavior is added. When a single s2p file is selected, the program automatically displays S21, S11 and S22
Replace the "Delete" message by a trash image
The delete image was taken from here
https://commons.wikimedia.org/wiki/File:Delete-button.svg
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
You are free:
to share – to copy, distribute and transmit the work
to remix – to adapt the work
Under the following conditions:
attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
Read Touchstone files with more than two ports
Update traces combobox depending on the selected dataset
If the user has loaded data with different number of ports, the traces combobox must be refreshed each time the user changes the dataset selection. Otherwise, this may cause that the user selects a non existing trace
Fix style in buttons for removing files
The QPushButtons were replaced by QToolButtons. With the QPushButtons the widget was too wide
Fix style in buttons for removing traces
QPushButton was converted into QToolButton
Delete dataset and its traces when the user decides to remove a file
Remove files and traces
Rework on the logic on how to remove datasets and traces
After removing a file, remove the associated widgets
Remove trace from Chart
Update file widget position in the grid after removing
Function handler for changing the color of a trace
Change linestyle depending on the combo selection
Set initial color of the color pickers
Added a spinbox control to control the trace width
It was added a spinbox that controls the width of the traces displayed. This is very convenient when a bunch of traces are being displayed and the user wants to highlight one of them easily
Added function handler for controlling the x-axis
A handler function was added to control the x-axis settings as the user changes the minimum, maximum or the tick interval
Update traces when changing the axis settings
Fix trace plotting refresh
Fix frequency limits when loading a GHz range file
Dockable widgets
Autoadjust y-axis settings
Automatically add K, delta, mu_s, m_p, MAG and MSG traces in S2P files
When a Touchtone file has two ports, the stability metrics are automatically computed and added to the dataset
Add marker table feature
It was added a new dock consisting on a marker table and some widgets for its management
Add dot marker and vertical lines in the QChart
Make case insensitive the frequency scale
Files were found were the frequency scale is all in capital letters. This creates a problem when reading the spar data. This commit fixes this by putting the frequency scale in lower case
Auto adjust x-axis when changing the units
Put x_div values as a ComboBox
It makes no much sense in having a decimal spinbox for defining the tick interval. It leads to decimal ticks. It's better to have a closed list of possible values
y axis tick in combobox
Fix vertical line markers
Fix bad "About Qt" connection
The "About Qt" message was not properly connected. As a consequence, when the user went to "Help-> About Qt..." nothing showed up.
This commit is intended to fix this by connecting the menu with the handler as it's done in the filter design tool
Link S-parameter viewer to Qucs-S
Add Re{Zin}, Im{Zin} traces to s1p and s2p files
Hide y-axis units
It makes no much sense for now to have it since it may happen that the y-axis represent dB, Ohm or simply its unitless (e.g. K, mu, ...)
Fix segfault when removing one single file
In previous commits, it was observed a segfault when removing one single s-par file. This happened because the program was freeing widgets already freed. This situation is avoided by ordering the list of widgets to remove
Autoadjust y-axis
Remove widgets for marker placement
They are actually not needed. The SpinBox and the combo with units just add clutter. The user can set the marker freq once added
Update x-axis limits after removing file
Increase maximum x-ticks
Get suffix using Qt method
This is more robust than the previous approach
Fix frequency scale in markers
Enable drag and drop to open files
Fix segfault when removing file
Readjust frequency limits when dataset has no traces
Fix read touchstone
Files were found whose header contains no !
Fix initial marker step
Fix autoscale y-axis
Prevent docks from closing
It makes no sense the user can close the docks
Solve infinite loop when fmax=3000 [unit]
Implemented button for removing all files on a row
Implement button for removing all markers on a row
2024-09-08 08:33:53 +02:00
|
|
|
add_subdirectory( qucs-s-spar-viewer )
|
2023-02-13 21:50:15 +03:00
|
|
|
#add_subdirectory( examples )
|
2024-03-19 09:15:28 +03:00
|
|
|
if(EXISTS ${CMAKE_SOURCE_DIR}/qucsator_rf/CMakeLists.txt)
|
|
|
|
add_subdirectory(qucsator_rf)
|
|
|
|
else()
|
|
|
|
message("Qucsator RF submodule not found. Please update submodules")
|
|
|
|
endif()
|
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)
|
|
|
|
|
|
|
|
|