forked from ultravnc/UltraVNC
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Catch up with the cmake files the recent changes to the VC project fi…
…les. (ultravnc#206) * cmake: Reflect recent changes for omnithread. * cmake: Reflect recent changes for rdr. * cmake: Reflect recent changes for udt4. * cmake: Reflect recent changes for udtcloud. * cmake: Reflect recent changes for uvncsettings. * cmake: Reflect recent changes for zip32. * cmake: Reflect recent changes for zipunzip. * cmake: Reflect recent changes for uvnc_settings. * cmake: Reflect recent changes for vncviewer. * cmake: Reflect recent changes for winvnc. * cmake: Remove remainings from before the switch to VCPKG. * cmake: Add repeater. * cmake: Update readme.txt. modified: cmake/CMakeLists.txt modified: cmake/libomnithread/CMakeLists.txt modified: cmake/librdr/CMakeLists.txt modified: cmake/libudtcloud/CMakeLists.txt new file: cmake/libuvncsettings/CMakeLists.txt modified: cmake/libzip32/CMakeLists.txt modified: cmake/libzipunzip/CMakeLists.txt modified: cmake/readme.txt modified: cmake/repeater/CMakeLists.txt
- Loading branch information
jose94752
committed
Oct 15, 2024
1 parent
dc2b03b
commit 9060d0a
Showing
9 changed files
with
39 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,4 @@ target_link_libraries(${PROJECT_NAME} | |
PRIVATE ZLIB::ZLIB | ||
PRIVATE zstd::libzstd | ||
PRIVATE LibLZMA::LibLZMA | ||
) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,4 @@ foreach(file ${${PROJECT_NAME}_SOURCES}) | |
endforeach(file) | ||
target_link_libraries(${PROJECT_NAME} | ||
libudt4 | ||
) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
|
||
set(LIBUVNCSETTINGS_SOURCES | ||
capture.cpp | ||
connections.cpp | ||
filetransfer.cpp | ||
firewall.cpp | ||
log.cpp | ||
misc.cpp | ||
network.cpp | ||
security.cpp | ||
service.cpp | ||
) | ||
add_library(libuvncsettings STATIC) | ||
target_include_directories(libuvncsettings PRIVATE "${CMAKE_SOURCE_DIR}/../DSMPlugin") | ||
target_include_directories(libuvncsettings PRIVATE "${CMAKE_SOURCE_DIR}/../omnithread") | ||
foreach(file ${LIBUVNCSETTINGS_SOURCES}) | ||
target_sources(libuvncsettings PRIVATE "${CMAKE_SOURCE_DIR}/../uvnc_settings/uvnc_settings/${file}") | ||
endforeach(file) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters