-
Notifications
You must be signed in to change notification settings - Fork 473
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added CMake build system #110
Draft
mmha
wants to merge
1
commit into
lewissbaker:master
Choose a base branch
from
mmha:cmake
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
cmake_minimum_required(VERSION 3.13) | ||
project(cppcoro LANGUAGES CXX) | ||
|
||
set(CMAKE_CXX_EXTENSIONS OFF) | ||
set(CMAKE_EXPORT_COMPILE_COMMANDS ON) | ||
|
||
list(APPEND CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake") | ||
include(CTest) | ||
|
||
add_subdirectory(lib) | ||
if(BUILD_TESTING) | ||
add_subdirectory(test) | ||
endif() | ||
|
||
export(EXPORT cppcoroTargets | ||
FILE "${PROJECT_BINARY_DIR}/cppcoro/cppcoroTargets.cmake" | ||
NAMESPACE cppcoro::) | ||
configure_file(cmake/cppcoroConfig.cmake | ||
"${PROJECT_BINARY_DIR}/cppcoro/cppcoroConfig.cmake" | ||
COPYONLY) | ||
|
||
set(config_package_location lib/cmake/cppcoro) | ||
install(DIRECTORY include | ||
DESTINATION . | ||
COMPONENT Devel) | ||
install(FILES cmake/FindCppcoroCoroutines.cmake | ||
DESTINATION ${config_package_location} | ||
COMPONENT Devel) | ||
install(EXPORT cppcoroTargets | ||
FILE cppcoroTargets.cmake | ||
NAMESPACE cppcoro:: | ||
DESTINATION ${config_package_location}) | ||
install( | ||
FILES ${CMAKE_CURRENT_BINARY_DIR}/cppcoro/cppcoroConfig.cmake | ||
DESTINATION ${config_package_location} | ||
COMPONENT Devel) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
include(CheckCXXCompilerFlag) | ||
include(CheckIncludeFileCXX) | ||
include(FindPackageHandleStandardArgs) | ||
|
||
check_cxx_compiler_flag(/await Coroutines_SUPPORTS_MS_FLAG) | ||
check_cxx_compiler_flag(-fcoroutines-ts Coroutines_SUPPORTS_GNU_FLAG) | ||
if(Coroutines_SUPPORTS_MS_FLAG OR Coroutines_SUPPORTS_GNU_FLAG) | ||
set(Coroutines_COMPILER_SUPPORT ON) | ||
endif() | ||
|
||
if(Coroutines_SUPPORTS_MS_FLAG) | ||
check_include_file_cxx("coroutine" Coroutines_STANDARD_LIBRARY_SUPPORT "/await") | ||
check_include_file_cxx("experimental/coroutine" Coroutines_EXPERIMENTAL_LIBRARY_SUPPORT "/await") | ||
elseif(Coroutines_SUPPORTS_GNU_FLAG) | ||
check_include_file_cxx("coroutine" Coroutines_STANDARD_LIBRARY_SUPPORT "-fcoroutines-ts") | ||
check_include_file_cxx("experimental/coroutine" Coroutines_EXPERIMENTAL_LIBRARY_SUPPORT "-fcoroutines-ts") | ||
endif() | ||
|
||
if(Coroutines_EXPERIMENTAL_LIBRARY_SUPPORT OR Coroutines_STANDARD_LIBRARY_SUPPORT) | ||
set(Coroutines_LIBRARY_SUPPORT ON) | ||
endif() | ||
|
||
find_package_handle_standard_args(CppcoroCoroutines | ||
REQUIRED_VARS Coroutines_LIBRARY_SUPPORT Coroutines_COMPILER_SUPPORT | ||
FAIL_MESSAGE "Verify that the compiler and the standard library both support the Coroutines TS") | ||
|
||
if(NOT CppcoroCoroutines_FOUND OR TARGET cppcoro::coroutines) | ||
return() | ||
endif() | ||
|
||
add_library(cppcoro::coroutines INTERFACE IMPORTED) | ||
if(Coroutines_SUPPORTS_MS_FLAG) | ||
target_compile_options(cppcoro::coroutines INTERFACE /await) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Under msvc optimised x64 builds we also want to add the "/await:heapelide" flag to take advantage of the coroutine frame heap-elision optimisations. |
||
elseif(Coroutines_SUPPORTS_GNU_FLAG) | ||
target_compile_options(cppcoro::coroutines INTERFACE -fcoroutines-ts) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}) | ||
|
||
include(CMakeFindDependencyMacro) | ||
find_dependency(CppcoroCoroutines QUIET REQUIRED) | ||
|
||
include("${CMAKE_CURRENT_LIST_DIR}/cppcoroTargets.cmake") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,168 @@ | ||
set(includes | ||
awaitable_traits.hpp | ||
is_awaitable.hpp | ||
async_auto_reset_event.hpp | ||
async_manual_reset_event.hpp | ||
async_generator.hpp | ||
async_mutex.hpp | ||
async_latch.hpp | ||
async_scope.hpp | ||
broken_promise.hpp | ||
cancellation_registration.hpp | ||
cancellation_source.hpp | ||
cancellation_token.hpp | ||
task.hpp | ||
sequence_barrier.hpp | ||
sequence_traits.hpp | ||
single_producer_sequencer.hpp | ||
multi_producer_sequencer.hpp | ||
shared_task.hpp | ||
shared_task.hpp | ||
single_consumer_event.hpp | ||
single_consumer_async_auto_reset_event.hpp | ||
sync_wait.hpp | ||
task.hpp | ||
io_service.hpp | ||
config.hpp | ||
on_scope_exit.hpp | ||
file_share_mode.hpp | ||
file_open_mode.hpp | ||
file_buffering_mode.hpp | ||
file.hpp | ||
fmap.hpp | ||
when_all.hpp | ||
when_all_ready.hpp | ||
resume_on.hpp | ||
schedule_on.hpp | ||
generator.hpp | ||
readable_file.hpp | ||
recursive_generator.hpp | ||
writable_file.hpp | ||
read_only_file.hpp | ||
write_only_file.hpp | ||
read_write_file.hpp | ||
file_read_operation.hpp | ||
file_write_operation.hpp | ||
static_thread_pool.hpp | ||
) | ||
list(TRANSFORM includes PREPEND "${PROJECT_SOURCE_DIR}/include/cppcoro/") | ||
|
||
set(netIncludes | ||
ip_address.hpp | ||
ip_endpoint.hpp | ||
ipv4_address.hpp | ||
ipv4_endpoint.hpp | ||
ipv6_address.hpp | ||
ipv6_endpoint.hpp | ||
socket.hpp | ||
) | ||
list(TRANSFORM netIncludes PREPEND "${PROJECT_SOURCE_DIR}/include/cppcoro/net/") | ||
|
||
set(detailIncludes | ||
void_value.hpp | ||
when_all_ready_awaitable.hpp | ||
when_all_counter.hpp | ||
when_all_task.hpp | ||
get_awaiter.hpp | ||
is_awaiter.hpp | ||
any.hpp | ||
sync_wait_task.hpp | ||
unwrap_reference.hpp | ||
lightweight_manual_reset_event.hpp | ||
) | ||
list(TRANSFORM detailIncludes PREPEND "${PROJECT_SOURCE_DIR}/include/cppcoro/detail/") | ||
|
||
set(privateHeaders | ||
cancellation_state.hpp | ||
socket_helpers.hpp | ||
auto_reset_event.hpp | ||
spin_wait.hpp | ||
spin_mutex.hpp | ||
) | ||
|
||
set(sources | ||
async_auto_reset_event.cpp | ||
async_manual_reset_event.cpp | ||
async_mutex.cpp | ||
cancellation_state.cpp | ||
cancellation_token.cpp | ||
cancellation_source.cpp | ||
cancellation_registration.cpp | ||
lightweight_manual_reset_event.cpp | ||
ip_address.cpp | ||
ip_endpoint.cpp | ||
ipv4_address.cpp | ||
ipv4_endpoint.cpp | ||
ipv6_address.cpp | ||
ipv6_endpoint.cpp | ||
static_thread_pool.cpp | ||
auto_reset_event.cpp | ||
spin_wait.cpp | ||
spin_mutex.cpp | ||
) | ||
|
||
if(WIN32) | ||
set(win32DetailIncludes | ||
win32.hpp | ||
win32_overlapped_operation.hpp | ||
) | ||
list(TRANSFORM win32DetailIncludes PREPEND "${PROJECT_SOURCE_DIR}/include/cppcoro/detail/") | ||
list(APPEND detailIncludes ${win32DetailIncludes}) | ||
|
||
set(win32NetIncludes | ||
socket.hpp | ||
socket_accept_operation.hpp | ||
socket_connect_operation.hpp | ||
socket_disconnect_operation.hpp | ||
socket_recv_operation.hpp | ||
socket_recv_from_operation.hpp | ||
socket_send_operation.hpp | ||
socket_send_to_operation.hpp | ||
) | ||
list(TRANSFORM win32NetIncludes PREPEND "${PROJECT_SOURCE_DIR}/include/cppcoro/net/") | ||
list(APPEND netIncludes ${win32NetIncludes}) | ||
|
||
set(win32Sources | ||
win32.cpp | ||
io_service.cpp | ||
file.cpp | ||
readable_file.cpp | ||
writable_file.cpp | ||
read_only_file.cpp | ||
write_only_file.cpp | ||
read_write_file.cpp | ||
file_read_operation.cpp | ||
file_write_operation.cpp | ||
socket_helpers.cpp | ||
socket.cpp | ||
socket_accept_operation.cpp | ||
socket_connect_operation.cpp | ||
socket_disconnect_operation.cpp | ||
socket_send_operation.cpp | ||
socket_send_to_operation.cpp | ||
socket_recv_operation.cpp | ||
socket_recv_from_operation.cpp | ||
) | ||
list(APPEND sources ${win32Sources}) | ||
endif() | ||
|
||
add_library(cppcoro | ||
${includes} | ||
${netIncludes} | ||
${detailIncludes} | ||
${privateHeaders} | ||
${sources} | ||
) | ||
|
||
target_include_directories(cppcoro PUBLIC | ||
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/include> | ||
$<INSTALL_INTERFACE:include>) | ||
target_compile_features(cppcoro PUBLIC cxx_std_20) | ||
|
||
find_package(CppcoroCoroutines REQUIRED) | ||
target_link_libraries(cppcoro PUBLIC cppcoro::coroutines) | ||
|
||
install(TARGETS cppcoro EXPORT cppcoroTargets | ||
LIBRARY DESTINATION lib | ||
ARCHIVE DESTINATION lib | ||
RUNTIME DESTINATION bin) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
add_library(doctest::doctest INTERFACE IMPORTED) | ||
target_include_directories(doctest::doctest INTERFACE doctest) | ||
|
||
find_package(Threads REQUIRED) | ||
|
||
add_executable(run | ||
counted.hpp | ||
io_service_fixture.hpp | ||
|
||
main.cpp | ||
counted.cpp | ||
generator_tests.cpp | ||
recursive_generator_tests.cpp | ||
async_generator_tests.cpp | ||
async_auto_reset_event_tests.cpp | ||
async_manual_reset_event_tests.cpp | ||
async_mutex_tests.cpp | ||
async_latch_tests.cpp | ||
cancellation_token_tests.cpp | ||
task_tests.cpp | ||
sequence_barrier_tests.cpp | ||
shared_task_tests.cpp | ||
sync_wait_tests.cpp | ||
single_consumer_async_auto_reset_event_tests.cpp | ||
single_producer_sequencer_tests.cpp | ||
multi_producer_sequencer_tests.cpp | ||
when_all_tests.cpp | ||
when_all_ready_tests.cpp | ||
ip_address_tests.cpp | ||
ip_endpoint_tests.cpp | ||
ipv4_address_tests.cpp | ||
ipv4_endpoint_tests.cpp | ||
ipv6_address_tests.cpp | ||
ipv6_endpoint_tests.cpp | ||
static_thread_pool_tests.cpp | ||
) | ||
|
||
if(WIN32) | ||
target_sources(run PRIVATE | ||
scheduling_operator_tests.cpp | ||
io_service_tests.cpp | ||
file_tests.cpp | ||
socket_tests.cpp | ||
) | ||
endif() | ||
|
||
target_link_libraries(run PRIVATE cppcoro Threads::Threads) | ||
|
||
add_test(NAME test COMMAND run) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that since the adoption of coroutines into C++20 that clang (trunk?) now also enables coroutines when
-std=c++2a
is enabled.