-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
33 lines (30 loc) · 1.07 KB
/
CMakeLists.txt
File metadata and controls
33 lines (30 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
cmake_minimum_required(VERSION 3.29)
project(LiveStreamClient VERSION 1.0.0)
set(CMAKE_CXX_STANDARD 20)
add_executable(LiveStreamClient
main.cpp
includes/libs/httplib.h
includes/enums/Commands.h
includes/api/WebSocketClient.h
includes/api/WebSocketConnection.h
includes/api/Server.h
includes/BrainsBehindScreenshot.h
includes/BitmapConverter.h
src/BrainsBehindScreenshot.cpp
src/BitmapConverter.cpp
src/api/server.cpp
src/api/WebSocketClient.cpp
src/api/WebSocketConnection.cpp
)
# Link static libraries to the executable target
# (In this case we need this for the lib 'libstdc++-6.dll' and some more)
# ----------------------------------------------------------------
# "PRIVATE" means that the libraries are only linked
# to the "ftp_client" target and not propagated to
# any other targets that link to "ftp_client".
# This is useful for keeping dependencies encapsulated within a target.
target_link_libraries(LiveStreamClient PRIVATE
-static
ws2_32
gdiplus
)