forked from elsid/bobyqa-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
35 lines (35 loc) · 1.39 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
cmake_minimum_required(VERSION 2.6)
project(bobyqa)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wall")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wextra")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Werror")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c11")
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wextra")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wold-style-cast")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY lib)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY lib)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY bin)
include_directories(include)
set(SOURCES
src/altmov.cpp
src/bobyqa.cpp
src/trsbox.cpp
src/update.cpp
)
add_library(bobyqa_static STATIC ${SOURCES})
set_target_properties(bobyqa_static PROPERTIES OUTPUT_NAME bobyqa)
add_library(bobyqa_shared SHARED ${SOURCES})
set_target_properties(bobyqa_shared PROPERTIES OUTPUT_NAME bobyqa)
add_executable(example_function src/example_function.c)
target_link_libraries(example_function bobyqa_static)
add_executable(example_closure src/example_closure.cpp)
target_link_libraries(example_closure bobyqa_static)
enable_testing()
add_executable(test_bobyqa tests/bobyqa.cpp)
target_link_libraries(test_bobyqa bobyqa_static)
add_test(run_test_bobyqa bin/test_bobyqa)