summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
blob: ab013c07f7717226f702dbf5e873485f365842cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
PROJECT(eurephia C)
cmake_minimum_required(VERSION 2.6)
SET(eurephia_auth_SRC 
	certinfo.c
	eurephia-auth.c
	eurephia.c
	eurephiadb.c
	eurephiadb_session.c
	eurephiafw.c
	eurephiafw_helpers.c
	eurephia_getsym.c
	eurephia_log.c
	eurephia_values.c
	passwd.c
	sha512.c
)
INCLUDE_DIRECTORIES(BEFORE ../../openvpn/openvpn-2.1_rc7 .)
ADD_LIBRARY(eurephia-auth MODULE ${eurephia_auth_SRC})
SET_TARGET_PROPERTIES(eurephia-auth PROPERTIES OUTPUT_NAME eurephia-auth PREFIX "")
SUBDIRS(database/sqlite firewall/iptables)