2024-03-29 21:22:16 +08:00
|
|
|
if(0)
|
2024-03-30 00:40:49 +08:00
|
|
|
include(QtUtils.cmake)
|
|
|
|
msvc_registry_search()
|
|
|
|
if(Qt5_DIR)
|
|
|
|
find_qt5(Core Widgets)
|
|
|
|
#set(CMAKE_AUTOMOC ON)
|
|
|
|
add_library(QtLoader MODULE QtLoader.cpp)
|
|
|
|
#qt5_wrap_cpp(MOC_SOURCES QtLoader.h)
|
|
|
|
#target_sources(QtLoader PRIVATE ${MOC_SOURCES})
|
|
|
|
target_link_libraries(QtLoader Qt5::Widgets Qt5::Core)
|
|
|
|
set_target_properties(QtLoader PROPERTIES LIBRARY_OUTPUT_DIRECTORY "${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/plugin${bitappendix}")
|
|
|
|
endif()
|
2024-04-21 17:38:47 +08:00
|
|
|
endif()
|
2024-04-26 20:23:31 +08:00
|
|
|
|
|
|
|
include(QtUtils.cmake)
|
|
|
|
if(NOT DEFINED USESYSQTPATH)
|
|
|
|
msvc_registry_search()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
find_qt5(Core Widgets WebSockets)
|
|
|
|
add_subdirectory(extensions)
|