2020-06-01 00:52:34 +02:00
|
|
|
cmake_minimum_required(VERSION 3.10)
|
|
|
|
|
2023-02-15 00:19:52 +01:00
|
|
|
project(snoopy)
|
2020-06-01 00:52:34 +02:00
|
|
|
|
2023-02-19 02:10:53 +01:00
|
|
|
include_directories("include")
|
|
|
|
file(GLOB SOURCES "src/*.cpp")
|
2020-06-03 02:19:20 +02:00
|
|
|
|
2023-02-19 02:10:53 +01:00
|
|
|
add_executable(snoopy ${SOURCES})
|
2020-06-01 00:52:34 +02:00
|
|
|
|