mirror of
https://github.com/neocturne/fastd.git
synced 2025-05-15 04:35:08 +02:00
12 lines
218 B
CMake
12 lines
218 B
CMake
cmake_minimum_required(VERSION 2.8.3)
|
|
project(FASTD C ASM)
|
|
|
|
set(CMAKE_MODULE_PATH ${FASTD_SOURCE_DIR}/cmake)
|
|
set(FASTD_VERSION "v11")
|
|
|
|
include(arch)
|
|
include(config)
|
|
include(deps)
|
|
include(checks)
|
|
|
|
add_subdirectory(src)
|