-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
54 lines (41 loc) · 1.69 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
cmake_minimum_required(VERSION 3.13)
project("libiothconf"
DESCRIPTION "ioth autoconfiguration"
HOMEPAGE_URL "https://github.com/rd235/libiothconf"
VERSION 0.1.0
LANGUAGES C)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -ggdb -D_FORTIFY_SOURCE=2 -O2 -pedantic -Wall -Wextra")
include(GNUInstallDirs)
include(CheckIncludeFile)
include(CheckSymbolExists)
set(LIBS_REQUIRED ioth mhash stropt)
set(HEADERS_REQUIRED ioth.h mhash.h stropt.h strcase.h)
foreach(THISLIB IN LISTS LIBS_REQUIRED)
find_library(LIB${THISLIB}_OK ${THISLIB})
if(NOT LIB${THISLIB}_OK)
message(FATAL_ERROR "library lib${THISLIB} not found")
endif()
endforeach(THISLIB)
foreach(HEADER IN LISTS HEADERS_REQUIRED)
check_include_file(${HEADER} ${HEADER}_OK)
if(NOT ${HEADER}_OK)
message(FATAL_ERROR "header file ${HEADER} not found")
endif()
endforeach(HEADER)
add_definitions(-D_GNU_SOURCE)
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
add_library(iothconf SHARED iothconf.c iothconf_data.c iothconf_hash.c iothconf_debug.c
iothconf_rd.c iothconf_dhcp.c iothconf_dhcpv6.c iothconf_dns.c iothconf_ip.c)
target_link_libraries(iothconf ioth mhash stropt)
set_target_properties(iothconf PROPERTIES VERSION ${PROJECT_VERSION}
SOVERSION ${PROJECT_VERSION_MAJOR})
# configure_file(iothconf.pc.in iothconf.pc @ONLY)
# configure_file(config.h.in config.h)
install(TARGETS iothconf DESTINATION ${CMAKE_INSTALL_LIBDIR})
install(FILES iothconf.h DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})
# install(FILES ${CMAKE_CURRENT_BINARY_DIR}/iothconf.pc
# DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig)
add_subdirectory(man)
add_subdirectory(test)
add_custom_target(uninstall
"${CMAKE_COMMAND}" -P "${PROJECT_SOURCE_DIR}/Uninstall.cmake")