mirror of
https://github.com/0xjbb/cet-spoofing-detection
synced 2026-06-21 13:41:03 +00:00
9 lines
159 B
CMake
9 lines
159 B
CMake
cmake_minimum_required(VERSION 4.2)
|
|
project(CETSpoofingDetection)
|
|
|
|
set(CMAKE_CXX_STANDARD 23)
|
|
|
|
add_executable(CETSpoofingDetection main.cpp
|
|
util.cpp
|
|
)
|