Skip to content

Commit f6f2525

Browse files
authored
Use CMAKE_MODULE_PATH for uSockets and uWebSockets (#318)
This is a simple follow-up build system tweak. Now that we have CMAKE_MODULE_PATH setup, we can more cleanly include uSockets and uWebSockets from that directly.
1 parent d58aa9f commit f6f2525

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ set(WITH_ZLIB ON)
8484

8585
# Set the correct libuv library name for uWebSockets
8686
set(LIBUV_LIBRARY uv_a)
87-
include(CMakeBuild/uSockets.cmake)
88-
include(CMakeBuild/uWebSockets.cmake)
87+
include(uSockets)
88+
include(uWebSockets)
8989

9090
# Define include directories for uWebSockets and uSockets
9191
set(UWEBSOCKETS_INCLUDE_DIR ${PROJECT_SOURCE_DIR}/extern/uWebSockets/src)

0 commit comments

Comments
 (0)