-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
45 lines (39 loc) · 1.11 KB
/
CMakeLists.txt
File metadata and controls
45 lines (39 loc) · 1.11 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
34
35
36
37
38
39
40
41
42
43
44
45
cmake_minimum_required(VERSION 3.16)
project( 2D_SVG_RENDERER CXX)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
include(FetchContent)
FetchContent_Declare(
nodepp
GIT_REPOSITORY https://github.com/NodeppOfficial/nodepp
GIT_TAG origin/main
GIT_PROGRESS ON
)
FetchContent_MakeAvailable(nodepp)
include(FetchContent)
FetchContent_Declare(
nodepp-express
GIT_REPOSITORY https://github.com/NodeppOfficial/nodepp-express
GIT_TAG origin/main
GIT_PROGRESS ON
)
FetchContent_MakeAvailable(nodepp-express)
include(FetchContent)
FetchContent_Declare(
nodepp-raylib
GIT_REPOSITORY https://github.com/NodeppOfficial/nodepp-raylib
GIT_TAG origin/main
GIT_PROGRESS ON
)
FetchContent_MakeAvailable(nodepp-raylib)
include(FetchContent)
FetchContent_Declare(
nodepp-jwt
GIT_REPOSITORY https://github.com/NodeppOfficial/nodepp-jwt
GIT_TAG origin/main
GIT_PROGRESS ON
)
FetchContent_MakeAvailable(nodepp-jwt)
add_executable( main ./main.cpp )
target_link_libraries( main PUBLIC nodepp nodepp-express nodepp-raylib nodepp-jwt )