Skip to content

Commit e4fad72

Browse files
authored
Merge pull request #5735 from tjhei/delete-parameter-gui
Remove detection and driver for parameter GUI.
2 parents f168159 + 005f0fb commit e4fad72

File tree

9 files changed

+6
-205
lines changed

9 files changed

+6
-205
lines changed

CMakeLists.txt

Lines changed: 0 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,51 +1006,6 @@ MESSAGE(STATUS "===== Configuring ASPECT documentation =============")
10061006

10071007
add_subdirectory(doc)
10081008

1009-
1010-
# Find the deal.II parameter GUI and install helper script
1011-
find_program(PARAMETER_GUI_EXECUTABLE
1012-
parameter_gui
1013-
HINTS $ENV{PARAMETER_GUI_DIR} $ENV{PARAMETER_GUI_DIR}/bin ${PARAMETER_GUI_DIR} ${PARAMETER_GUI_DIR}/bin
1014-
PATH bin)
1015-
mark_as_advanced(CLEAR PARAMETER_GUI_EXECUTABLE)
1016-
1017-
# Did the user specify something that doesn't exist?
1018-
if(PARAMETER_GUI_EXECUTABLE
1019-
AND
1020-
(NOT EXISTS ${PARAMETER_GUI_EXECUTABLE} OR IS_DIRECTORY ${PARAMETER_GUI_EXECUTABLE}))
1021-
message(STATUS "Warning: PARAMETER_GUI_EXECUTABLE '${PARAMETER_GUI_EXECUTABLE}' does not exist")
1022-
set(PARAMETER_GUI_EXECUTABLE "PARAMETER_GUI_EXECUTABLE-NOTFOUND" CACHE FILEPATH "" FORCE)
1023-
endif()
1024-
1025-
if(NOT PARAMETER_GUI_EXECUTABLE)
1026-
message(STATUS "Parameter GUI not found: install and provide a hint using -D PARAMETER_GUI_DIR or set -D PARAMETER_GUI_EXECUTABLE directly.")
1027-
else()
1028-
message(STATUS "Found parameter GUI at: ${PARAMETER_GUI_EXECUTABLE}")
1029-
configure_file(
1030-
${CMAKE_SOURCE_DIR}/doc/aspect-gui
1031-
${CMAKE_BINARY_DIR}/aspect-gui
1032-
@ONLY
1033-
)
1034-
install(FILES ${CMAKE_BINARY_DIR}/aspect-gui
1035-
DESTINATION bin
1036-
PERMISSIONS OWNER_EXECUTE OWNER_WRITE OWNER_READ
1037-
GROUP_READ GROUP_EXECUTE
1038-
WORLD_READ WORLD_EXECUTE)
1039-
endif()
1040-
1041-
1042-
1043-
# A target to create parameters.json after building the ASPECT binary.
1044-
1045-
add_custom_command(TARGET ${TARGET_EXE} POST_BUILD
1046-
COMMAND sh -c 'echo "" | ./$<TARGET_PROPERTY:${TARGET_EXE},OUTPUT_NAME> --output-json -- > parameters.json'
1047-
WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
1048-
1049-
1050-
1051-
message(STATUS "")
1052-
message(STATUS "===== Writing final configuration ==================")
1053-
10541009
include(cmake/write_config)
10551010

10561011
# print "info" if run for the first time:

cmake/write_config.cmake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ _detailed(
4949
# CMAKE_BINARY_DIR: ${CMAKE_BINARY_DIR}
5050
# CMAKE_CXX_COMPILER: ${CMAKE_CXX_COMPILER_ID} ${CMAKE_CXX_COMPILER_VERSION} on platform ${CMAKE_SYSTEM_NAME} ${CMAKE_SYSTEM_PROCESSOR}
5151
# ${CMAKE_CXX_COMPILER}
52-
# PARAMETER_GUI_EXECUTABLE: ${PARAMETER_GUI_EXECUTABLE}
5352
")
5453

5554
if(CMAKE_C_COMPILER_WORKS)

doc/aspect-gui

Lines changed: 0 additions & 57 deletions
This file was deleted.

doc/modules/changes/20240602_tjhei

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Changed: The QT based Parameter GUI has been removed from the ASPECT repository
2+
and the documentation as it was no longer maintained and no longer working
3+
correctly. Instead, use the parameter list linked from the website or edit
4+
directly in Visual Studio Code with the ASPECT plugin.
5+
<br>
6+
(Timo Heister, 2024/06/02)
-97.1 KB
Binary file not shown.

doc/sphinx/user/run-aspect/gui/index.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

doc/sphinx/user/run-aspect/gui/installing.md

Lines changed: 0 additions & 48 deletions
This file was deleted.

doc/sphinx/user/run-aspect/gui/using.md

Lines changed: 0 additions & 34 deletions
This file was deleted.

doc/sphinx/user/run-aspect/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@ visualizing-results/index.md
1010
checkpoint-restart.md
1111
run-faster/index.md
1212
parameters-overview/index.md
13-
gui/index.md
1413
:::

0 commit comments

Comments
 (0)