LedBars/RpiLedBars/backend/libs/CMakeLists.txt

16 lines
321 B
CMake
Raw Normal View History

include(FetchContent)
2022-07-20 16:57:01 +02:00
set(FETCHCONTENT_FULLY_DISCONNECTED ON)
FetchContent_Declare(
logc
GIT_REPOSITORY "https://github.com/Tropicananass/log.c.git"
)
FetchContent_Declare(
ws
GIT_REPOSITORY "https://github.com/Tropicananass/wsServer.git"
)
# add the log.c and ws libraries
FetchContent_MakeAvailable(logc ws)