equal
deleted
inserted
replaced
|
1 # This is still incomplete, use SCons for now. |
|
2 |
|
3 cmake_minimum_required(VERSION 3.0) |
|
4 project(pyrit) |
|
5 |
|
6 file(GLOB SOURCES |
|
7 src/*.cc |
|
8 include/*.h) |
|
9 |
|
10 add_library(pyrit STATIC ${SOURCES}) |
|
11 target_include_directories(pyrit PRIVATE include) |