Basic Header file ready

This commit is contained in:
2024-06-03 12:10:29 +05:30
commit c4c3b013c0
7 changed files with 197 additions and 0 deletions

7
src/CMakeLists.txt Normal file
View File

@@ -0,0 +1,7 @@
set(EVENT_LOOP_SRC "event_loop.c")
add_library(${EVENT_LOOP_LIB} STATIC
${EVENT_LOOP_SRC})
target_include_directories(${EVENT_LOOP_LIB} PUBLIC
${HEADER_DIR})

0
src/event_loop.c Normal file
View File