aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: b86b74c88f8c27a03c804222ef6015cf4f423b00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
cmake_minimum_required(VERSION 3.10)
project(pgnp)

# Shared library
add_library(pgnp SHARED src/pgnp.cpp)

# Includes
set(PGNP_INCLUDE_DIR ${CMAKE_CURRENT_BINARY_DIR}/includes) # For conveniance
set(PGNP_INCLUDE_DIR ${PGNP_INCLUDE_DIR} PARENT_SCOPE) # To be used by other projects with add_subdirectory()
file(MAKE_DIRECTORY ${PGNP_INCLUDE_DIR})
configure_file(src/pgnp.hpp ${PGNP_INCLUDE_DIR} COPYONLY)
include_directories(${PGNP_INCLUDE_DIR})

# Unit tests
enable_testing()
add_subdirectory(./tests)