-
Notifications
You must be signed in to change notification settings - Fork 474
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
build system #200
Comments
+1 |
This library is also available via vcpkg https://github.com/microsoft/vcpkg (for Window,Linux&MacOS). |
Any idead if vcpkg mess the python versions when installing on Windows ...i use python 3.9 and dont want to install...if it does maybe i will try to modify the python files :) |
This library is also available via xmake/xrepo we need only write a simple xmake.lua file xmake.lua add_requires("cppcoro")
target("test")
set_kind("binary")
add_files("src/*.cpp")
add_packages("cppcoro")
set_languages("c++17")
add_cxxflags("/await") then we run or we can also use $ xrepo install cppcoro it's package configuration in xmake-repo https://github.com/xmake-io/xmake-repo/blob/master/packages/c/cppcoro/xmake.lua If you accept pr, I can also submit a xmake.lua to the project root directory and use the xmake build system to maintain this library. |
What the purpose to choose cake as the build system for a general purpose library?
Could you please support building via cmake as well as the user normally do not want add non-necessary dependencies...
Next, if the cake is supposed to be something new then it is a good idea at least to work against python 3.0, not 2.x.
The text was updated successfully, but these errors were encountered: