summaryrefslogtreecommitdiffstats
path: root/eurephiadm/CMakeLists.txt
blob: 1eae151396c0a080acf5ff553a77219c58940d8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
PROJECT(eurephiadm C)
cmake_minimum_required(VERSION 2.6)

SET(efw_ipt_SRC
        eurephiadm.c
        ../common/eurephia_log.c
        ../common/eurephia_getsym.c
        ../database/eurephiadb.c
)

INCLUDE_DIRECTORIES(../common ../database)
ADD_EXECUTABLE(eurephiadm ${efw_ipt_SRC})
TARGET_LINK_LIBRARIES(eurephiadm dl)