File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed
Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -25,13 +25,16 @@ set(ASYNCIO_INC
2525 include /asyncio/sleep.h
2626 include /asyncio/schedule_task.h
2727 include /asyncio/concept/awaitable.h
28- include /asyncio/gather.h)
28+ include /asyncio/gather.h
29+ include /asyncio/result.h
30+ include /asyncio/callstack.h)
2931
3032include_directories (${CMAKE_SOURCE_DIR} /include )
3133
3234add_library (asyncio STATIC
3335 ${ASYNC_INC}
34- src/event_loop.cpp include /asyncio/result.h include /asyncio/callstack.h)
36+ src/event_loop.cpp)
37+ target_link_libraries (asyncio PUBLIC fmt::fmt)
3538
3639add_subdirectory (test )
3740add_subdirectory (third_party)
Original file line number Diff line number Diff line change 11add_executable (hello_world hello_world.cpp)
2- target_link_libraries (hello_world asyncio fmt::fmt )
2+ target_link_libraries (hello_world asyncio)
Original file line number Diff line number Diff line change 11add_executable (asyncio_ut selector_test.cpp task_test.cpp result_test.cpp counted.h)
2- target_link_libraries (asyncio_ut Catch2WithMain asyncio fmt::fmt)
3-
4- #include(CTest)
5- #include(Catch)
6- #catch_discover_tests(asyncio_ut)
2+ target_link_libraries (asyncio_ut Catch2WithMain asyncio)
You can’t perform that action at this time.
0 commit comments