0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
cmake_minimum_required(VERSION 3.22)
project(sysgraph)
set(CMAKE_CXX_STANDARD 17)
add_executable(sysgraph main.cpp)
target_link_libraries(sysgraph -static)