-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConfig.mk
45 lines (38 loc) · 1.22 KB
/
Config.mk
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
36
37
38
39
40
41
42
43
44
45
############################################################
## UNCOMMENT ANY TARGET TO OVERWRITE THE DEFAULT! ##
############################################################
# Project info
# ===============
PROJECT := Optimus
VERSION := 1.0.0
# STD_NAMESPACE := optimus
GIT_REMOTE_PATH := https://github.com/topsframework/optimus.git
MAINTEINER_NAME := Ígor Bonadio
MAINTEINER_MAIL := [email protected]
COPYRIGHT := Optimus
SYNOPSIS := Nonlinear optimization library
DESCRIPTION := Optimus is a library of nonlinear optimization algorithms written in C++.
# Program settings
# ==================
TESTBIN := test
BENCHBIN := bench
SHRLIB := optimus
# Dependencies
# ==============
# GIT_DEPENDENCY := # List of git dependencies in the form:
# # DEP_NAME => dep_path build_cmd
# Paths
# =======
CXXLIBS +=
LDLIBS += # Linker paths
# Flags
# =======
CPPFLAGS += # Precompiler Flags
CXXFLAGS += -ansi -Wall -O2 -std=c++11
LDFLAGS += # Linker flags
# Makeball list
# ===============
# 'include conf/makeball.mk' for pre-configured options
# to use the library 'makeball'
include conf/googletest.mk
include conf/eigen.mk