mirror of
https://gitee.com/wangbin579/cetus.git
synced 2024-12-02 03:47:41 +08:00
13 lines
193 B
CMake
13 lines
193 B
CMake
|
|
add_definitions(-DEV_STANDALONE=1)
|
|
include_directories(${CMAKE_CURRENT_BINARY_DIR})
|
|
|
|
set(EV_SRC
|
|
ev.c
|
|
event.c
|
|
)
|
|
|
|
add_library(ev-cetus SHARED ${EV_SRC})
|
|
|
|
CHASSIS_INSTALL_TARGET(ev-cetus)
|