-
-
Notifications
You must be signed in to change notification settings - Fork 460
omath: add new package #7619
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
omath: add new package #7619
Conversation
luadebug
commented
Jul 10, 2025
- Before adding new features and new modules, please go to issues to submit the relevant feature description first.
- Write good commit messages and use the same coding conventions as the rest of the project.
- Please commit code to dev branch and we will merge into master branch in feature
- Ensure your edited codes with four spaces instead of TAB.
- 增加新特性和新模块之前,请先到issues提交相关特性说明,经过讨论评估确认后,再进行相应的代码提交,避免做无用工作。
- 编写友好可读的提交信息,并使用与工程代码相同的代码规范,代码请用4个空格字符代替tab缩进。
- 请提交代码到dev分支,如果通过,我们会在特定时间合并到master分支上。
- 为了规范化提交日志的格式,commit消息,不要用中文,请用英文描述。
It should be 32 bit imgui but it resolves it as 64 bit imgui during cross build... |
Isn't omath's licence MIT instead of zlib? |
It has been changed from MIT to Zlib :) at 3.0.1 ... 3.0.3 |
Try pkgconfig? |
It points to correct include path? |
Do you have any workaround @star-hengxing ? |
pkgconfig Imported target "PkgConfig::imgui" includes non-existent path
"/home/runner/.xmake/packages/i/imgui/v1.92.0/63bf3a23860d476f963e64ec7c284417/lib/pkgconfig/../../include/imgui"
in its INTERFACE_INCLUDE_DIRECTORIES. Possible reasons include:
* The path was deleted, renamed, or moved to another location.
* An install or uninstall procedure did not complete successfully.
* The installation package was faulty and references files it does not
provide. Because xmake-repo/packages/i/imgui/xmake.lua Line 120 in 031a855
So you can try local imgui = package:dep("imgui")
for _, inc in ipairs(imgui:get("includedirs")) do
os.mkdir(imgui:installdir(inc))
end |
But I think this is a xmake bug. When generating the pc file, it needs to filter out non-existent paths. |
As far as I know
The two of them would be empty folders:
|
These directories will only exist when other imgui configs are enabled. |