~aleteoryx/muditaos

ref: 6bc6eccc34e1406fdb9d9d0f0fe091c2dcb06cb5 muditaos/module-services/service-time/CMakeLists.txt -rw-r--r-- 419 bytes
6bc6eccc — Roman Kubiak [EGD-5565] Fix update process on new lf filesystem 4 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
project(service-time)
message( "${PROJECT_NAME}  ${CMAKE_CURRENT_SOURCE_DIR}" )

set(SOURCES
    ServiceTime.cpp
    timeEvents/TimeEvents.cpp
    timeEvents/CalendarTimeEvents.cpp
)

add_library(${PROJECT_NAME} STATIC ${SOURCES})

target_include_directories(${PROJECT_NAME}
    PUBLIC
        "${CMAKE_CURRENT_LIST_DIR}"
)

target_link_libraries(${PROJECT_NAME}
    PRIVATE
        module-sys
        module-apps
)