1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-01-11 23:53:21 +00:00
Miodrag Milanović 17d42e41db
Make GUI able to compile on both Qt5 and Qt6 (#1576)
* Use QtPropertyBrowser for Qt5/6

* Fix cmake for python-console for consistency

* Make GUI compile for both Qt5 and Qt6

* Fix crash on init with Wayland on Qt6

* Cleanup

* disable deprecation warnings for now

* Relaxed cmake check for initial Qt6 test
2025-10-15 12:19:20 +02:00

64 lines
1.7 KiB
CMake

cmake_minimum_required( VERSION 2.8 )
project( PythonInterpreter )
set(CMAKE_CXX_STANDARD 11)
find_package(Qt6 COMPONENTS Core Widgets REQUIRED)
if (Qt6_FOUND)
message(STATUS "Using Qt6")
else()
message(STATUS "Using Qt5")
find_package(Qt5 COMPONENTS Core Widgets REQUIRED)
endif()
find_package( PythonLibs REQUIRED )
include_directories( ${PYTHON_INCLUDE_DIRS} )
add_executable( test_python_interpreter test_python_interpreter.cpp Interpreter.cpp )
target_link_libraries( test_python_interpreter ${PYTHON_LIBRARIES} )
if (Qt6_FOUND)
qt6_wrap_cpp( Console_MOC Console.h )
else()
qt5_wrap_cpp( Console_MOC Console.h )
endif()
add_executable( test_console test_console.cpp
Console.cpp ${Console_MOC}
ColumnFormatter.cpp
Interpreter.cpp
ParseHelper.cpp
ParseHelper.BlockParseState.cpp
ParseHelper.BracketParseState.cpp
ParseHelper.ContinuationParseState.cpp
ParseMessage.cpp
)
target_compile_definitions( test_console PRIVATE QT_NO_KEYWORDS)
if (Qt6_FOUND)
target_link_libraries( test_console Qt6::Widgets ${PYTHON_LIBRARIES} )
else()
target_link_libraries( test_console Qt5::Widgets ${PYTHON_LIBRARIES} )
endif()
add_executable( test_parse_helper test_parse_helper.cpp
ParseHelper.cpp
ParseHelper.BlockParseState.cpp
ParseHelper.BracketParseState.cpp
ParseHelper.ContinuationParseState.cpp
ParseListener.cpp
ParseMessage.cpp
)
add_executable( test_cli test_cli.cpp
ParseHelper.cpp
ParseHelper.BlockParseState.cpp
ParseHelper.BracketParseState.cpp
ParseHelper.ContinuationParseState.cpp
ParseListener.cpp
ParseMessage.cpp
Interpreter.cpp
)
target_link_libraries( test_cli
${PYTHON_LIBRARIES}
)