summaryrefslogtreecommitdiffstats
path: root/src/CMakeLists.txt
blob: ff3bf58d8533589a7186037cc6c8f8ed2329daec (plain)
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
include_directories(.)

add_library(openlmicommon SHARED
            globals.c
)

set_target_properties(openlmicommon PROPERTIES SOVERSION 0.0.1)

install(TARGETS openlmicommon DESTINATION lib${LIB_SUFFIX})
install(FILES globals.h DESTINATION include/openlmi)

if (WITH-FAN)
    add_subdirectory(fan)
endif (WITH-FAN)

if (WITH-POWER)
    add_subdirectory(power)
endif (WITH-POWER)

if (WITH-SERVICE)
    add_subdirectory(service)
endif (WITH-SERVICE)

if (WITH-ACCOUNT)
    add_subdirectory(account)
endif (WITH-ACCOUNT)