c++跨平台ui

发布时间:2024年01月04日

fltk

https://gitee.com/mirrors_fltk/fltk.git

codeblock中有fltk项目开发模板,可以快速构建项目

wxwidget

https://gitee.com/sofu456/wxWidgets.git

git submodule update --init --recursive
打开demo和sample
set(wxBUILD_SAMPLES ALL)
set(wxBUILD_DEMOS ON)
build/options.cmake文件中,设置share或者static
wx_option(wxBUILD_SHARED “Build wx libraries as shared libs” OFF)
wx_option(wxBUILD_USE_STATIC_RUNTIME “Link using the static runtime library” ON)

  • 支持xml构建ui

wxfrombuilder配置fpb文件构建UI
源码构建(github上有安装包可以下载)

find_package找不到wxwidget可以改成如下配置,指定绝对路径
set(wxWidgets_INCLUDE_DIRS E:/Opensource/wxWidgets/include)
set(wxWidgets_LIBRA

文章来源:https://blog.csdn.net/daoer_sofu/article/details/135268611
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。