mirror of
https://git.sr.ht/~grimler/Heimdall
synced 2025-02-28 21:11:15 +00:00
10 lines
199 B
CMake
10 lines
199 B
CMake
cmake_minimum_required(VERSION 3.0.0)
|
|
project(libpit)
|
|
|
|
set(LIBPIT_SOURCE_FILES
|
|
source/libpit.cpp)
|
|
|
|
add_library(pit STATIC ${LIBPIT_SOURCE_FILES})
|
|
|
|
target_compile_features(pit PRIVATE cxx_std_11)
|