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

add_library(curacommon SHARED
            globals.c
)

set_target_properties(curacommon PROPERTIES SOVERSION 0.0.1)

install(TARGETS curacommon DESTINATION lib${LIB_SUFFIX})

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)