-
Notifications
You must be signed in to change notification settings - Fork 0
I2358 meson rc msvc #1
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
base: dev
Are you sure you want to change the base?
Conversation
ea4bb81 to
16a0e03
Compare
16a0e03 to
82a7b75
Compare
|
Hi @o-mdr, I somewhat fixed the issue in .rc file preprocessor. However, I am stuck with some unresolved symbols, |
o-mdr
left a comment
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.
hi! I know you are working on this, I thought I'd share some thoughts in case you may find them helpful.
| pip install -U meson | ||
| - run: | | ||
| git clone https://github.com/lzutao/lz4/ third-party\lz4 |
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.
Just checking, do we want to use your version of lz4 and not the official one? In case your version becomes out of date?
| meson setup ` | ||
| --buildtype=release ` | ||
| -Ddefault_library=shared ` | ||
| -Dprefix=C:\lz4 ` |
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.
Some machines may not have disk C. Will this be used anywhere outside of build machine? If so, will it be better to use a relative path for this?
| - run: | | ||
| git clone https://github.com/lzutao/lz4/ third-party\lz4 | ||
| cd third-party\lz4 |
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 lz4 is in vcpkg, like zlib below. Will be great to use the same approach for the dependencies
| -Dbin_programs=true ` | ||
| -Dbin_contrib=true ` | ||
| -Ddefault_library=shared ` | ||
| -Dpkg_config_path="C:\vcpkg\packages\zlib_x64-windows\lib\pkgconfig;C:\lz4\lib\pkgconfig" ` |
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.
Relying on hard coded paths, may not work on all the systems. Consider replacing with ENV variable, or there's a way vcpkg installs things
|
Thank you for your reviews. My goal with CI changes is to create an environment Actually, I want to use vcpkg too. But as you could see:
|
No description provided.