mirror of
https://github.com/Hizenberg469/Event-Loop-in-C.git
synced 2026-04-20 01:02:23 +03:00
11 lines
272 B
CMake
11 lines
272 B
CMake
set(EVENT_LOOP_APP evloop_app)
|
|
set(EV_LOOP_APP_SRC "evloop_app.c")
|
|
|
|
add_executable(${EVENT_LOOP_APP}
|
|
${EV_LOOP_APP_SRC})
|
|
|
|
target_link_libraries(${EVENT_LOOP_APP} PUBLIC
|
|
${EVENT_LOOP_LIB})
|
|
|
|
target_link_directories(${EVENT_LOOP_APP} PUBLIC
|
|
${HEADER_DIR}) |