mirror of
https://github.com/openappsec/attachment.git
synced 2025-06-28 16:41:03 +03:00
13 lines
263 B
CMake
13 lines
263 B
CMake
cmake_minimum_required (VERSION 2.8.4)
|
|
project (ngen)
|
|
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
|
|
|
|
set (CMAKE_CXX_STANDARD 11)
|
|
|
|
include_directories(external)
|
|
include_directories(core/include/attachments)
|
|
|
|
add_subdirectory(core)
|
|
add_subdirectory(attachments)
|