mirror of
https://github.com/Gator96100/ProxSpace.git
synced 2025-07-30 03:28:35 -07:00
15 lines
424 B
CMake
15 lines
424 B
CMake
|
|
if (NOT TARGET Qt5::uic)
|
|
add_executable(Qt5::uic IMPORTED)
|
|
|
|
set(imported_location "${_qt5Widgets_install_prefix}/bin/uic.exe")
|
|
_qt5_Widgets_check_file_exists(${imported_location})
|
|
|
|
set_target_properties(Qt5::uic PROPERTIES
|
|
IMPORTED_LOCATION ${imported_location}
|
|
)
|
|
endif()
|
|
|
|
include("${CMAKE_CURRENT_LIST_DIR}/Qt5Widgets_AccessibleFactory.cmake" OPTIONAL)
|
|
|
|
set(Qt5Widgets_UIC_EXECUTABLE Qt5::uic)
|