16e396efc3
channel code borrowed from libtask, modified to match the names of libcoio.
28 lines
804 B
CMake
28 lines
804 B
CMake
cmake_minimum_required(VERSION 3.7)
|
|
project(coio)
|
|
|
|
add_library(${PROJECT_NAME}
|
|
coro.c
|
|
coio.c
|
|
channel.c
|
|
coio_glib.c)
|
|
|
|
add_custom_target(${PROJECT_NAME}_files SOURCES coioimpl.h)
|
|
|
|
set_property(TARGET ${PROJECT_NAME} PROPERTY C_STANDARD 99)
|
|
target_compile_options(${PROJECT_NAME} PRIVATE -W -Wall -Wextra -Werror)
|
|
|
|
find_package(PkgConfig REQUIRED)
|
|
pkg_check_modules(GLIB2 REQUIRED glib-2.0)
|
|
pkg_check_modules(GIO2 REQUIRED gio-2.0)
|
|
|
|
target_include_directories(${PROJECT_NAME} PUBLIC ${GLIB2_INCLUDE_DIRS})
|
|
target_link_libraries(${PROJECT_NAME} ${GLIB2_LIBRARIES})
|
|
|
|
target_include_directories(${PROJECT_NAME} PRIVATE ${GIO2_INCLUDE_DIRS})
|
|
target_link_libraries(${PROJECT_NAME} ${GIO2_LIBRARIES})
|
|
|
|
target_link_libraries(${PROJECT_NAME} m)
|
|
|
|
target_include_directories(${PROJECT_NAME} PUBLIC .)
|