forked from phev-remote/phevctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
38 lines (25 loc) · 1.03 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
project("Mitstubishi Outlander PHEV Adapter CLI" C)
cmake_minimum_required(VERSION 3.0)
include(CTest)
option(MQTT_PAHO "Include MQTT Paho support (requires msg core to be compiled with Paho support)")
set (CMAKE_C_STANDARD 11)
set(TARGET_GROUP production CACHE STRING "Group to build")
find_library(PHEV_LIB phev)
find_library(MSG_CORE_LIB msg_core)
find_library(CJSON_LIB cjson)
if(MQTT_PAHO)
find_library(PAHO_LIB paho-mqtt3c-static REQUIRED)
set(CMAKE_C_FLAGS "-DMQTT_PAHO=true")
endif()
if(TARGET_GROUP STREQUAL production)
add_executable(phevctl main.c
src/phevargs.c
)
add_executable(decode decode.c)
target_include_directories(phevctl PUBLIC include)
target_include_directories(decode PUBLIC include)
target_link_libraries(phevctl "${PHEV_LIB}" "${MSG_CORE_LIB}" "${CJSON_LIB}" "${PAHO_LIB}" pthread)
target_link_libraries(decode "${PHEV_LIB}" "${MSG_CORE_LIB}" "${CJSON_LIB}" )
elseif(TARGET_GROUP STREQUAL test)
add_subdirectory(test)
ENDIF()