We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
what about selecting toolchain like cmake -t flag?
The text was updated successfully, but these errors were encountered:
I have supported this feature, you can install and try it. https://github.com/tboox/xmake/releases/download/v2.2.2/xmake-v2.2.2.exe
$ xmake f --vs_toolset=14.0 $ xmake
Sorry, something went wrong.
xmake project do not generate a solution with right vs toolset
I have improved it, you can try it again. https://github.com/tboox/xmake/releases/download/v2.2.2/xmake-v2.2.3-dev.exe
$ xmake f --vs_toolset=14.1 $ xmake project -k vs2017
And It has support xp now.
target("test") set_kind("binary") add_files("src/*.c") -- compatible with xp add_defines("_USING_V140_SDK71_") add_ldflags("/SUBSYSTEM:CONSOLE,5.01")
Then we run:
$ xmake f --vs_toolset=14.0 $ xmake project -k vs2017
It will generate vcproj file with toolset: v140_xp
No branches or pull requests
what about selecting toolchain like cmake -t flag?
The text was updated successfully, but these errors were encountered: