mirror of
https://github.com/Dark98/threeSD.git
synced 2026-07-02 16:49:04 +00:00
updates
- implemented frontend - namespaced Core - imported qdevicewatcher - fixed bug in logging (more like in misc)
This commit is contained in:
Vendored
+6
@@ -1,2 +1,8 @@
|
||||
# Crypto++
|
||||
add_subdirectory(cryptopp)
|
||||
|
||||
# fmt
|
||||
add_subdirectory(fmt)
|
||||
|
||||
# QDeviceWatcher
|
||||
add_subdirectory(qdevicewatcher)
|
||||
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
set(CMAKE_AUTOMOC ON)
|
||||
|
||||
add_definitions(-DUNICODE -D_UNICODE)
|
||||
|
||||
add_library(qdevicewatcher STATIC
|
||||
qdevicewatcher/src/qdevicewatcher_p.h
|
||||
qdevicewatcher/src/qdevicewatcher.cpp
|
||||
qdevicewatcher/src/qdevicewatcher.h
|
||||
)
|
||||
|
||||
target_link_libraries(qdevicewatcher PRIVATE Qt5::Core)
|
||||
target_include_directories(qdevicewatcher INTERFACE qdevicewatcher/src)
|
||||
|
||||
if (WIN32)
|
||||
target_sources(qdevicewatcher PRIVATE
|
||||
qdevicewatcher/src/qdevicewatcher_win32.cpp
|
||||
)
|
||||
elseif(APPLE)
|
||||
target_sources(qdevicewatcher PRIVATE
|
||||
qdevicewatcher/src/qdevicewatcher_mac.cpp
|
||||
)
|
||||
elseif(UNIX)
|
||||
target_sources(qdevicewatcher PRIVATE
|
||||
qdevicewatcher/src/qdevicewatcher_linux.cpp
|
||||
)
|
||||
endif()
|
||||
+1
Submodule externals/qdevicewatcher/qdevicewatcher added at f873229468
Reference in New Issue
Block a user