├── .github └── workflows │ └── azure-static-web-apps-thankful-water-0bb1cb90f.yml ├── .gitignore ├── .nojekyll ├── BLOG_README.md ├── README.md ├── docs ├── .vitepress │ ├── config.mts │ ├── plugins │ │ └── add-title.ts │ └── theme │ │ ├── Author.vue │ │ ├── BlogHome.vue │ │ ├── BlogList.vue │ │ ├── BlogPagination.vue │ │ ├── BlogPaginationZh.vue │ │ ├── Date.vue │ │ ├── ZhBlogHome.vue │ │ ├── blog-data.js │ │ ├── components │ │ ├── AIAssistant.vue │ │ ├── PostTitle.vue │ │ ├── VPCarbonAds.vue │ │ ├── VPDoc.vue │ │ ├── VPDocAside.vue │ │ └── VPSidebar.vue │ │ ├── index.ts │ │ ├── posts.data.ts │ │ ├── styles.css │ │ ├── zh-blog-data.js │ │ └── zh-posts.data.ts ├── about │ ├── contact.md │ ├── sponsor.md │ └── who_is_using_xmake.md ├── api │ ├── description │ │ ├── builtin-policies.md │ │ ├── builtin-rules.md │ │ ├── builtin-variables.md │ │ ├── conditions.md │ │ ├── configuration-option.md │ │ ├── custom-rule.md │ │ ├── custom-toolchain.md │ │ ├── global-interfaces.md │ │ ├── helper-interfaces.md │ │ ├── package-dependencies.md │ │ ├── plugin-and-task.md │ │ ├── project-target.md │ │ ├── specification.md │ │ ├── xpack-component-interfaces.md │ │ └── xpack-interfaces.md │ └── scripts │ │ ├── builtin-modules │ │ ├── coroutine.md │ │ ├── cprint.md │ │ ├── cprintf.md │ │ ├── format.md │ │ ├── hash.md │ │ ├── import.md │ │ ├── inherit.md │ │ ├── io.md │ │ ├── ipairs.md │ │ ├── linuxos.md │ │ ├── macos.md │ │ ├── os.md │ │ ├── pairs.md │ │ ├── path.md │ │ ├── print.md │ │ ├── printf.md │ │ ├── raise.md │ │ ├── signal.md │ │ ├── string.md │ │ ├── table.md │ │ ├── try-catch-finally.md │ │ ├── vformat.md │ │ └── winos.md │ │ ├── extension-modules │ │ ├── async │ │ │ ├── jobgraph.md │ │ │ └── runjobs.md │ │ ├── cli │ │ │ └── amalgamate.md │ │ ├── core │ │ │ ├── base │ │ │ │ ├── bit.md │ │ │ │ ├── bloom_filter.md │ │ │ │ ├── bytes.md │ │ │ │ ├── cpu.md │ │ │ │ ├── global.md │ │ │ │ ├── graph.md │ │ │ │ ├── hashset.md │ │ │ │ ├── heap.md │ │ │ │ ├── json.md │ │ │ │ ├── libc.md │ │ │ │ ├── list.md │ │ │ │ ├── option.md │ │ │ │ ├── pipe.md │ │ │ │ ├── privilege.md │ │ │ │ ├── process.md │ │ │ │ ├── queue.md │ │ │ │ ├── scheduler.md │ │ │ │ ├── semver.md │ │ │ │ ├── socket.md │ │ │ │ ├── task.md │ │ │ │ ├── thread.md │ │ │ │ ├── tty.md │ │ │ │ └── xml.md │ │ │ ├── cache │ │ │ │ ├── detectcache.md │ │ │ │ ├── global_detectcache.md │ │ │ │ ├── globalcache.md │ │ │ │ ├── localcache.md │ │ │ │ └── memcache.md │ │ │ ├── compress │ │ │ │ └── lz4.md │ │ │ ├── language │ │ │ │ └── language.md │ │ │ ├── project │ │ │ │ ├── config.md │ │ │ │ └── project.md │ │ │ ├── tool │ │ │ │ ├── compiler.md │ │ │ │ └── linker.md │ │ │ └── ui │ │ │ │ ├── action.md │ │ │ │ ├── application.md │ │ │ │ ├── boxdialog.md │ │ │ │ ├── button.md │ │ │ │ ├── choicebox.md │ │ │ │ ├── choicedialog.md │ │ │ │ ├── dialog.md │ │ │ │ ├── event.md │ │ │ │ ├── inputdialog.md │ │ │ │ ├── label.md │ │ │ │ ├── mconfdialog.md │ │ │ │ ├── menubar.md │ │ │ │ ├── scrollbar.md │ │ │ │ ├── statusbar.md │ │ │ │ ├── textdialog.md │ │ │ │ ├── textedit.md │ │ │ │ ├── view.md │ │ │ │ └── window.md │ │ ├── devel │ │ │ └── git.md │ │ ├── lib │ │ │ ├── detect.md │ │ │ └── lua │ │ │ │ └── package.md │ │ ├── net │ │ │ ├── http.md │ │ │ └── ping.md │ │ ├── package │ │ │ └── tools.md │ │ ├── privilege │ │ │ └── sudo.md │ │ └── utils │ │ │ ├── archive.md │ │ │ └── platform.md │ │ ├── native-modules.md │ │ ├── option-instance.md │ │ ├── package-instance.md │ │ └── target-instance.md ├── blog │ └── index.md ├── config.ts ├── examples │ ├── bindings │ │ ├── lua-module.md │ │ ├── nodejs-module.md │ │ ├── python-module.md │ │ └── swig.md │ ├── cpp │ │ ├── asn1.md │ │ ├── autogen.md │ │ ├── basic.md │ │ ├── cosmocc.md │ │ ├── cppfront.md │ │ ├── cxx-modules.md │ │ ├── linux-bpf.md │ │ ├── linux-driver-module.md │ │ ├── merge-static-libraries.md │ │ ├── mfc.md │ │ ├── openmp.md │ │ ├── protobuf.md │ │ ├── qt.md │ │ ├── wasm.md │ │ ├── wdk.md │ │ └── winsdk.md │ ├── embed │ │ ├── keil-c51.md │ │ ├── keil-mdk.md │ │ └── verilog.md │ └── other-languages │ │ ├── cuda.md │ │ ├── dlang.md │ │ ├── fortran.md │ │ ├── golang.md │ │ ├── lex-yacc.md │ │ ├── nim.md │ │ ├── objc.md │ │ ├── pascal.md │ │ ├── rust.md │ │ ├── swift.md │ │ ├── vala.md │ │ └── zig.md ├── guide │ ├── basic-commands │ │ ├── build-configuration.md │ │ ├── build-targets.md │ │ ├── create-project.md │ │ ├── cross-compilation.md │ │ ├── install-and-uninstall.md │ │ ├── pack-programs.md │ │ ├── run-targets.md │ │ └── switch-toolchains.md │ ├── best-practices │ │ ├── ai-qa-optimization.md │ │ ├── faq.md │ │ └── performance.md │ ├── extensions │ │ ├── builtin-plugins.md │ │ ├── ide-integration-plugins.md │ │ ├── plugin-development.md │ │ └── theme-style.md │ ├── extras │ │ ├── autoscan-sourcecode.md │ │ ├── build-cache.md │ │ ├── distributed-compilation.md │ │ ├── environment-variables.md │ │ ├── remote-compilation.md │ │ ├── trybuild-3rd-sourcecode.md │ │ └── unity-build.md │ ├── introduction.md │ ├── package-management │ │ ├── network-optimization.md │ │ ├── package-distribution.md │ │ ├── package-management-in-project.md │ │ ├── repository-management.md │ │ ├── using-local-packages.md │ │ ├── using-official-packages.md │ │ ├── using-packages-in-cmake.md │ │ ├── using-source-code-packages.md │ │ ├── using-system-packages.md │ │ ├── using-third-party-packages.md │ │ └── xrepo-cli.md │ ├── project-configuration │ │ ├── add-packages.md │ │ ├── configure-targets.md │ │ ├── custom-rule.md │ │ ├── define-options.md │ │ ├── multi-level-directories.md │ │ ├── namespace-isolation.md │ │ ├── plugin-and-task.md │ │ ├── syntax-description.md │ │ └── toolchain-configuration.md │ └── quick-start.md ├── index.md ├── posts │ ├── add-package-and-autocheck.md │ ├── api-import.md │ ├── api-scope.md │ ├── condition-and-select-compile.md │ ├── custom-option.md │ ├── custom-rule.md │ ├── custom-task.md │ ├── how-to-build-a-simple-project.md │ ├── how-to-compile-on-cross-toolchains.md │ ├── how-to-install-xmake.md │ ├── new-feature-announcement.md │ ├── package-target.md │ ├── precompiled-header.md │ ├── project-description.md │ ├── quickstart-1-installation.md │ ├── quickstart-10-target-deps.md │ ├── quickstart-11-subprojects.md │ ├── quickstart-12-custom-scripts.md │ ├── quickstart-2-create-and-build-project.md │ ├── quickstart-3-run-and-debug.md │ ├── quickstart-4-basic-project-settings.md │ ├── quickstart-5-build-android.md │ ├── quickstart-6-build-qt-project.md │ ├── quickstart-7-build-cuda-project.md │ ├── quickstart-8-switch-build-mode.md │ ├── quickstart-9-cross-compile.md │ ├── variables-usage.md │ ├── xmake-update-v2.5.1.md │ ├── xmake-update-v2.5.2.md │ ├── xmake-update-v2.5.3.md │ ├── xmake-update-v2.5.4.md │ ├── xmake-update-v2.5.5.md │ ├── xmake-update-v2.5.6.md │ ├── xmake-update-v2.5.7.md │ ├── xmake-update-v2.5.8.md │ ├── xmake-update-v2.5.9.md │ ├── xmake-update-v2.6.1.md │ ├── xmake-update-v2.6.2.md │ ├── xmake-update-v2.6.3.md │ ├── xmake-update-v2.6.4.md │ ├── xmake-update-v2.6.5.md │ ├── xmake-update-v2.6.6.md │ ├── xmake-update-v2.7.1.md │ ├── xmake-update-v2.7.2.md │ ├── xmake-update-v2.7.3.md │ ├── xmake-update-v2.7.6.md │ ├── xmake-update-v2.7.7.md │ ├── xmake-update-v2.7.8.md │ ├── xmake-update-v2.8.1.md │ ├── xmake-update-v2.8.2.md │ ├── xmake-update-v2.8.3.md │ ├── xmake-update-v2.8.5.md │ ├── xmake-update-v2.8.6.md │ ├── xmake-update-v2.8.7.md │ ├── xmake-update-v2.9.1.md │ └── xmake-update-v3.0.5.md ├── public │ ├── assets │ │ └── img │ │ │ ├── afdian-xmake.png │ │ │ ├── alipay.png │ │ │ ├── cprint_colors.png │ │ │ ├── cprint_emoji.png │ │ │ ├── donate.gif │ │ │ ├── favicon.ico │ │ │ ├── github_sponsor.png │ │ │ ├── guide │ │ │ ├── macapp.png │ │ │ ├── qt_quickapp.png │ │ │ ├── qt_widgetapp.png │ │ │ └── vscode_status_bar.png │ │ │ ├── index │ │ │ ├── add_require.png │ │ │ ├── menuconf.gif │ │ │ ├── menuconf.png │ │ │ ├── package.gif │ │ │ ├── package_arch.png │ │ │ ├── package_manage.png │ │ │ ├── showcode1.png │ │ │ └── xmake-basic-render.gif │ │ │ ├── logo.png │ │ │ ├── logo.svg │ │ │ ├── manual │ │ │ ├── filegroup1.png │ │ │ ├── filegroup2.png │ │ │ ├── filegroup3.png │ │ │ ├── nsis_1.png │ │ │ ├── nsis_2.png │ │ │ ├── nsis_3.png │ │ │ ├── nsis_4.png │ │ │ ├── option_set_category.gif │ │ │ ├── option_set_values.png │ │ │ ├── property_page_vsxmake.png │ │ │ ├── qt_vs.png │ │ │ ├── set_group.png │ │ │ ├── xmake-debug.png │ │ │ ├── xmake-debug2.png │ │ │ ├── xmake-remote.png │ │ │ ├── xmake-test1.png │ │ │ └── xmake-test2.png │ │ │ ├── patreon.png │ │ │ ├── paypal.png │ │ │ ├── posts │ │ │ └── xmake │ │ │ │ ├── build-artifacts.png │ │ │ │ ├── build-stats-2020.png │ │ │ │ ├── build_demo.gif │ │ │ │ ├── check_root.png │ │ │ │ ├── commits-2020.png │ │ │ │ ├── cprint_colors.png │ │ │ │ ├── cprint_emoji.png │ │ │ │ ├── cuda_test.gif │ │ │ │ ├── discord.png │ │ │ │ ├── haiku.jpeg │ │ │ │ ├── logo128.png │ │ │ │ ├── logo256.ico │ │ │ │ ├── logo256.png │ │ │ │ ├── logo256c.ico │ │ │ │ ├── logo256c.png │ │ │ │ ├── logo32.png │ │ │ │ ├── logo64.png │ │ │ │ ├── mac-catalyst.png │ │ │ │ ├── mainmenu.png │ │ │ │ ├── menuconf.gif │ │ │ │ ├── muslcc.gif │ │ │ │ ├── ollydbg.png │ │ │ │ ├── option_set_category.gif │ │ │ │ ├── option_set_values.png │ │ │ │ ├── renderdoc.gif │ │ │ │ ├── safer_installation.png │ │ │ │ ├── searchconf.gif │ │ │ │ ├── star-history-2019.png │ │ │ │ ├── star-history-2020.png │ │ │ │ ├── star-history.png │ │ │ │ ├── usage_demo.gif │ │ │ │ ├── videodemo.png │ │ │ │ ├── vscode-qt.jpeg │ │ │ │ ├── vsjitdebugger.png │ │ │ │ ├── xmake-cmake.jpeg │ │ │ │ ├── xmake-commit-8k.png │ │ │ │ ├── xmake-compilation.png │ │ │ │ ├── xmake-docs.png │ │ │ │ ├── xmake-idea-create_project.png │ │ │ │ ├── xmake-idea-menu.png │ │ │ │ ├── xmake-idea-output_panel.png │ │ │ │ ├── xmake-idea-problem.gif │ │ │ │ ├── xmake-idea-project_configuration.png │ │ │ │ ├── xmake-idea-quickstart.gif │ │ │ │ ├── xmake-idea-run_configuration.png │ │ │ │ ├── xmake-metal.png │ │ │ │ ├── xmake-packages.png │ │ │ │ ├── xmake-qt-wasm.png │ │ │ │ ├── xmake-star-history.png │ │ │ │ ├── xmake-stats-2019.png │ │ │ │ ├── xmake-sublime-build_run.gif │ │ │ │ ├── xmake-sublime-commands.png │ │ │ │ ├── xmake-sublime-completion.gif │ │ │ │ ├── xmake-sublime-configuration.gif │ │ │ │ ├── xmake-sublime-problem.gif │ │ │ │ ├── xmake-sublime-quickstart.gif │ │ │ │ ├── xmake-sublime-statusbar.png │ │ │ │ ├── xmake-verbose.png │ │ │ │ ├── xmake-vscode-build.gif │ │ │ │ ├── xmake-vscode-channel.png │ │ │ │ ├── xmake-vscode-commands.png │ │ │ │ ├── xmake-vscode-completion.gif │ │ │ │ ├── xmake-vscode-configure.gif │ │ │ │ ├── xmake-vscode-configure.png │ │ │ │ ├── xmake-vscode-debug.gif │ │ │ │ ├── xmake-vscode-debug.png │ │ │ │ ├── xmake-vscode-hello1.png │ │ │ │ ├── xmake-vscode-hello2.png │ │ │ │ ├── xmake-vscode-market.png │ │ │ │ ├── xmake-vscode-problem.gif │ │ │ │ ├── xmake-vscode-projects.jpg │ │ │ │ ├── xmake-vscode-record.gif │ │ │ │ ├── xmake-vscode-statusbar.png │ │ │ │ ├── xmake-vscode-yo-code.png │ │ │ │ ├── xmake-vscode.png │ │ │ │ ├── xmake-watch.gif │ │ │ │ ├── xmake_site.png │ │ │ │ ├── xmake_summer.jpeg │ │ │ │ └── zig_author.png │ │ │ ├── progress-multirow.png │ │ │ ├── speed_skating.svg │ │ │ ├── theme │ │ │ ├── default.png │ │ │ ├── emoji.png │ │ │ └── ninja.png │ │ │ ├── weixin.png │ │ │ ├── xmake-cup.jpeg │ │ │ ├── xmake-cup2.jpeg │ │ │ ├── xmake-cup3.png │ │ │ ├── xmake-cup4.jpeg │ │ │ ├── xmake-logo-card.png │ │ │ ├── xmake-logo-card.psd │ │ │ ├── xmake-logo-large.png │ │ │ └── xmake_course.png │ ├── psget.text │ ├── robots.txt │ └── shget.text ├── sidebar.ts └── zh │ ├── about │ ├── contact.md │ ├── course.md │ ├── peripheral_items.md │ ├── sponsor.md │ └── who_is_using_xmake.md │ ├── api │ ├── description │ │ ├── builtin-policies.md │ │ ├── builtin-rules.md │ │ ├── builtin-variables.md │ │ ├── conditions.md │ │ ├── configuration-option.md │ │ ├── custom-rule.md │ │ ├── custom-toolchain.md │ │ ├── global-interfaces.md │ │ ├── helper-interfaces.md │ │ ├── package-dependencies.md │ │ ├── plugin-and-task.md │ │ ├── project-target.md │ │ ├── specification.md │ │ ├── xpack-component-interfaces.md │ │ └── xpack-interfaces.md │ └── scripts │ │ ├── builtin-modules │ │ ├── coroutine.md │ │ ├── cprint.md │ │ ├── cprintf.md │ │ ├── format.md │ │ ├── hash.md │ │ ├── import.md │ │ ├── inherit.md │ │ ├── io.md │ │ ├── ipairs.md │ │ ├── linuxos.md │ │ ├── macos.md │ │ ├── os.md │ │ ├── pairs.md │ │ ├── path.md │ │ ├── print.md │ │ ├── printf.md │ │ ├── raise.md │ │ ├── signal.md │ │ ├── string.md │ │ ├── table.md │ │ ├── try-catch-finally.md │ │ ├── vformat.md │ │ └── winos.md │ │ ├── extension-modules │ │ ├── async │ │ │ ├── jobgraph.md │ │ │ └── runjobs.md │ │ ├── cli │ │ │ └── amalgamate.md │ │ ├── core │ │ │ ├── base │ │ │ │ ├── bit.md │ │ │ │ ├── bloom_filter.md │ │ │ │ ├── bytes.md │ │ │ │ ├── cpu.md │ │ │ │ ├── global.md │ │ │ │ ├── graph.md │ │ │ │ ├── hashset.md │ │ │ │ ├── heap.md │ │ │ │ ├── json.md │ │ │ │ ├── libc.md │ │ │ │ ├── list.md │ │ │ │ ├── option.md │ │ │ │ ├── pipe.md │ │ │ │ ├── privilege.md │ │ │ │ ├── process.md │ │ │ │ ├── queue.md │ │ │ │ ├── scheduler.md │ │ │ │ ├── semver.md │ │ │ │ ├── socket.md │ │ │ │ ├── task.md │ │ │ │ ├── thread.md │ │ │ │ ├── tty.md │ │ │ │ └── xml.md │ │ │ ├── cache │ │ │ │ ├── detectcache.md │ │ │ │ ├── global_detectcache.md │ │ │ │ ├── globalcache.md │ │ │ │ ├── localcache.md │ │ │ │ └── memcache.md │ │ │ ├── compress │ │ │ │ └── lz4.md │ │ │ ├── language │ │ │ │ └── language.md │ │ │ ├── project │ │ │ │ ├── config.md │ │ │ │ └── project.md │ │ │ ├── tool │ │ │ │ ├── compiler.md │ │ │ │ └── linker.md │ │ │ └── ui │ │ │ │ ├── action.md │ │ │ │ ├── application.md │ │ │ │ ├── boxdialog.md │ │ │ │ ├── button.md │ │ │ │ ├── choicebox.md │ │ │ │ ├── choicedialog.md │ │ │ │ ├── dialog.md │ │ │ │ ├── event.md │ │ │ │ ├── inputdialog.md │ │ │ │ ├── label.md │ │ │ │ ├── mconfdialog.md │ │ │ │ ├── menubar.md │ │ │ │ ├── scrollbar.md │ │ │ │ ├── statusbar.md │ │ │ │ ├── textdialog.md │ │ │ │ ├── textedit.md │ │ │ │ ├── view.md │ │ │ │ └── window.md │ │ ├── devel │ │ │ └── git.md │ │ ├── lib │ │ │ ├── detect.md │ │ │ └── lua │ │ │ │ └── package.md │ │ ├── net │ │ │ ├── http.md │ │ │ └── ping.md │ │ ├── package │ │ │ └── tools.md │ │ ├── privilege │ │ │ └── sudo.md │ │ └── utils │ │ │ ├── archive.md │ │ │ └── platform.md │ │ ├── native-modules.md │ │ ├── option-instance.md │ │ ├── package-instance.md │ │ └── target-instance.md │ ├── blog │ └── index.md │ ├── config.ts │ ├── examples │ ├── bindings │ │ ├── lua-module.md │ │ ├── nodejs-module.md │ │ ├── python-module.md │ │ └── swig.md │ ├── cpp │ │ ├── asn1.md │ │ ├── autogen.md │ │ ├── basic.md │ │ ├── cosmocc.md │ │ ├── cppfront.md │ │ ├── cxx-modules.md │ │ ├── linux-bpf.md │ │ ├── linux-driver-module.md │ │ ├── merge-static-libraries.md │ │ ├── mfc.md │ │ ├── openmp.md │ │ ├── protobuf.md │ │ ├── qt.md │ │ ├── wasm.md │ │ ├── wdk.md │ │ └── winsdk.md │ ├── embed │ │ ├── keil-c51.md │ │ ├── keil-mdk.md │ │ └── verilog.md │ └── other-languages │ │ ├── cuda.md │ │ ├── dlang.md │ │ ├── fortran.md │ │ ├── golang.md │ │ ├── lex-yacc.md │ │ ├── nim.md │ │ ├── objc.md │ │ ├── pascal.md │ │ ├── rust.md │ │ ├── swift.md │ │ ├── vala.md │ │ └── zig.md │ ├── guide │ ├── basic-commands │ │ ├── build-configuration.md │ │ ├── build-targets.md │ │ ├── create-project.md │ │ ├── cross-compilation.md │ │ ├── install-and-uninstall.md │ │ ├── pack-programs.md │ │ ├── run-targets.md │ │ └── switch-toolchains.md │ ├── best-practices │ │ ├── ai-qa-optimization.md │ │ ├── faq.md │ │ └── performance.md │ ├── extensions │ │ ├── builtin-plugins.md │ │ ├── ide-integration-plugins.md │ │ ├── plugin-development.md │ │ └── theme-style.md │ ├── extras │ │ ├── autoscan-sourcecode.md │ │ ├── build-cache.md │ │ ├── distributed-compilation.md │ │ ├── environment-variables.md │ │ ├── remote-compilation.md │ │ ├── trybuild-3rd-sourcecode.md │ │ └── unity-build.md │ ├── introduction.md │ ├── package-management │ │ ├── network-optimization.md │ │ ├── package-distribution.md │ │ ├── package-management-in-project.md │ │ ├── repository-management.md │ │ ├── using-local-packages.md │ │ ├── using-official-packages.md │ │ ├── using-packages-in-cmake.md │ │ ├── using-source-code-packages.md │ │ ├── using-system-packages.md │ │ ├── using-third-party-packages.md │ │ └── xrepo-cli.md │ ├── project-configuration │ │ ├── add-packages.md │ │ ├── configure-targets.md │ │ ├── custom-rule.md │ │ ├── define-options.md │ │ ├── multi-level-directories.md │ │ ├── namespace-isolation.md │ │ ├── plugin-and-task.md │ │ ├── syntax-description.md │ │ └── toolchain-configuration.md │ └── quick-start.md │ ├── index.md │ └── posts │ ├── add-package-and-autocheck.md │ ├── api-import.md │ ├── api-scope.md │ ├── app-to-ipa.md │ ├── batch-check-library-interfaces.md │ ├── binding-option.md │ ├── build-project-so-simply.md │ ├── compile-swift.md │ ├── compiler-features.md │ ├── condition-and-select-compile.md │ ├── config-files-options.md │ ├── cross-platform-development.md │ ├── custom-action.md │ ├── custom-option.md │ ├── custom-rule.md │ ├── custom-task.md │ ├── enable-pdb-for-windows.md │ ├── enable-pdb-on-windows.md │ ├── generate-vs2008-project.md │ ├── how-to-build-a-simple-project.md │ ├── how-to-compile-on-cross-toolchains.md │ ├── includes-check.md │ ├── lua-profiler.md │ ├── merge-static-library.md │ ├── next-plan.md │ ├── plugin-arguments.md │ ├── plugin-doxygen.md │ ├── plugin-lua.md │ ├── plugin-macro-package.md │ ├── plugin-macro.md │ ├── plugin-modules.md │ ├── plugin-print-colors.md │ ├── precompiled-header.md │ ├── project-add-files.md │ ├── project-compile.md │ ├── project-desciption-examples.md │ ├── project-description.md │ ├── quickstart-1-installation.md │ ├── quickstart-10-target-deps.md │ ├── quickstart-11-subprojects.md │ ├── quickstart-12-custom-scripts.md │ ├── quickstart-2-create-and-build-project.md │ ├── quickstart-3-run-and-debug.md │ ├── quickstart-4-basic-project-settings.md │ ├── quickstart-5-build-android.md │ ├── quickstart-6-build-qt-project.md │ ├── quickstart-7-build-cuda-project.md │ ├── quickstart-8-switch-build-mode.md │ ├── quickstart-9-cross-compile.md │ ├── run-debug.md │ ├── safer-install-and-uninstall.md │ ├── simplify-xmake-description.md │ ├── support-cuda.md │ ├── support-wdk.md │ ├── switch-library-kind.md │ ├── try-catch.md │ ├── v2.1.1-goal.md │ ├── variables-usage.md │ ├── xmake-community.md │ ├── xmake-course-build-c-projects.md │ ├── xmake-in-2020.md │ ├── xmake-sourcecode-arch.md │ ├── xmake-summer-2022.md │ ├── xmake-summer-ospp.md │ ├── xmake-update-v2.5.1.md │ ├── xmake-update-v2.5.2.md │ ├── xmake-update-v2.5.3.md │ ├── xmake-update-v2.5.4.md │ ├── xmake-update-v2.5.5.md │ ├── xmake-update-v2.5.6.md │ ├── xmake-update-v2.5.7.md │ ├── xmake-update-v2.5.8.md │ ├── xmake-update-v2.5.9.md │ ├── xmake-update-v2.6.1.md │ ├── xmake-update-v2.6.2.md │ ├── xmake-update-v2.6.3.md │ ├── xmake-update-v2.6.4.md │ ├── xmake-update-v2.6.5.md │ ├── xmake-update-v2.6.6.md │ ├── xmake-update-v2.7.1.md │ ├── xmake-update-v2.7.2.md │ ├── xmake-update-v2.7.3.md │ ├── xmake-update-v2.7.6.md │ ├── xmake-update-v2.7.7.md │ ├── xmake-update-v2.7.8.md │ ├── xmake-update-v2.8.1.md │ ├── xmake-update-v2.8.2.md │ ├── xmake-update-v2.8.3.md │ ├── xmake-update-v2.8.5.md │ ├── xmake-update-v2.8.6.md │ ├── xmake-update-v2.8.7.md │ ├── xmake-update-v2.9.1.md │ ├── xmake-update-v3.0.5.md │ └── xmake-vscode.md ├── package.json └── scripts ├── build.sh ├── generate-blog-data.js └── run.sh /.github/workflows/azure-static-web-apps-thankful-water-0bb1cb90f.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/.github/workflows/azure-static-web-apps-thankful-water-0bb1cb90f.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BLOG_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/BLOG_README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/README.md -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/.vitepress/plugins/add-title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/plugins/add-title.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/Author.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/theme/Author.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/BlogHome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/theme/BlogHome.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/BlogList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/theme/BlogList.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/BlogPagination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/theme/BlogPagination.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/BlogPaginationZh.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/theme/BlogPaginationZh.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/Date.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/theme/Date.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/ZhBlogHome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/theme/ZhBlogHome.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/blog-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/theme/blog-data.js -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/AIAssistant.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/theme/components/AIAssistant.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/PostTitle.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/theme/components/PostTitle.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/VPCarbonAds.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/theme/components/VPCarbonAds.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/VPDoc.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/theme/components/VPDoc.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/VPDocAside.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/theme/components/VPDocAside.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/VPSidebar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/theme/components/VPSidebar.vue -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/posts.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/theme/posts.data.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/theme/styles.css -------------------------------------------------------------------------------- /docs/.vitepress/theme/zh-blog-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/theme/zh-blog-data.js -------------------------------------------------------------------------------- /docs/.vitepress/theme/zh-posts.data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/.vitepress/theme/zh-posts.data.ts -------------------------------------------------------------------------------- /docs/about/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/about/contact.md -------------------------------------------------------------------------------- /docs/about/sponsor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/about/sponsor.md -------------------------------------------------------------------------------- /docs/about/who_is_using_xmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/about/who_is_using_xmake.md -------------------------------------------------------------------------------- /docs/api/description/builtin-policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/description/builtin-policies.md -------------------------------------------------------------------------------- /docs/api/description/builtin-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/description/builtin-rules.md -------------------------------------------------------------------------------- /docs/api/description/builtin-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/description/builtin-variables.md -------------------------------------------------------------------------------- /docs/api/description/conditions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/description/conditions.md -------------------------------------------------------------------------------- /docs/api/description/configuration-option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/description/configuration-option.md -------------------------------------------------------------------------------- /docs/api/description/custom-rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/description/custom-rule.md -------------------------------------------------------------------------------- /docs/api/description/custom-toolchain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/description/custom-toolchain.md -------------------------------------------------------------------------------- /docs/api/description/global-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/description/global-interfaces.md -------------------------------------------------------------------------------- /docs/api/description/helper-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/description/helper-interfaces.md -------------------------------------------------------------------------------- /docs/api/description/package-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/description/package-dependencies.md -------------------------------------------------------------------------------- /docs/api/description/plugin-and-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/description/plugin-and-task.md -------------------------------------------------------------------------------- /docs/api/description/project-target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/description/project-target.md -------------------------------------------------------------------------------- /docs/api/description/specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/description/specification.md -------------------------------------------------------------------------------- /docs/api/description/xpack-component-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/description/xpack-component-interfaces.md -------------------------------------------------------------------------------- /docs/api/description/xpack-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/description/xpack-interfaces.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/coroutine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/coroutine.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/cprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/cprint.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/cprintf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/cprintf.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/format.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/hash.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/import.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/inherit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/inherit.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/io.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/ipairs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/ipairs.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/linuxos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/linuxos.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/macos.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/os.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/pairs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/pairs.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/path.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/print.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/printf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/printf.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/raise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/raise.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/signal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/signal.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/string.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/table.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/try-catch-finally.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/try-catch-finally.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/vformat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/vformat.md -------------------------------------------------------------------------------- /docs/api/scripts/builtin-modules/winos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/builtin-modules/winos.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/async/jobgraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/async/jobgraph.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/async/runjobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/async/runjobs.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/cli/amalgamate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/cli/amalgamate.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/bit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/bit.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/bloom_filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/bloom_filter.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/bytes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/bytes.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/cpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/cpu.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/global.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/global.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/graph.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/hashset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/hashset.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/heap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/heap.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/json.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/libc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/libc.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/list.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/option.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/pipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/pipe.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/privilege.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/privilege.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/process.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/queue.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/scheduler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/scheduler.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/semver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/semver.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/socket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/socket.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/task.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/thread.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/thread.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/tty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/tty.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/base/xml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/base/xml.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/cache/detectcache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/cache/detectcache.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/cache/global_detectcache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/cache/global_detectcache.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/cache/globalcache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/cache/globalcache.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/cache/localcache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/cache/localcache.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/cache/memcache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/cache/memcache.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/compress/lz4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/compress/lz4.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/language/language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/language/language.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/project/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/project/config.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/project/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/project/project.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/tool/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/tool/compiler.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/tool/linker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/tool/linker.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/ui/action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/ui/action.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/ui/application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/ui/application.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/ui/boxdialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/ui/boxdialog.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/ui/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/ui/button.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/ui/choicebox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/ui/choicebox.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/ui/choicedialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/ui/choicedialog.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/ui/dialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/ui/dialog.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/ui/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/ui/event.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/ui/inputdialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/ui/inputdialog.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/ui/label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/ui/label.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/ui/mconfdialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/ui/mconfdialog.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/ui/menubar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/ui/menubar.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/ui/scrollbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/ui/scrollbar.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/ui/statusbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/ui/statusbar.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/ui/textdialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/ui/textdialog.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/ui/textedit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/ui/textedit.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/ui/view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/ui/view.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/core/ui/window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/core/ui/window.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/devel/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/devel/git.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/lib/detect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/lib/detect.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/lib/lua/package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/lib/lua/package.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/net/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/net/http.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/net/ping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/net/ping.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/package/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/package/tools.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/privilege/sudo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/privilege/sudo.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/utils/archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/utils/archive.md -------------------------------------------------------------------------------- /docs/api/scripts/extension-modules/utils/platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/extension-modules/utils/platform.md -------------------------------------------------------------------------------- /docs/api/scripts/native-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/native-modules.md -------------------------------------------------------------------------------- /docs/api/scripts/option-instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/option-instance.md -------------------------------------------------------------------------------- /docs/api/scripts/package-instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/package-instance.md -------------------------------------------------------------------------------- /docs/api/scripts/target-instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/api/scripts/target-instance.md -------------------------------------------------------------------------------- /docs/blog/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/blog/index.md -------------------------------------------------------------------------------- /docs/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/config.ts -------------------------------------------------------------------------------- /docs/examples/bindings/lua-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/bindings/lua-module.md -------------------------------------------------------------------------------- /docs/examples/bindings/nodejs-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/bindings/nodejs-module.md -------------------------------------------------------------------------------- /docs/examples/bindings/python-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/bindings/python-module.md -------------------------------------------------------------------------------- /docs/examples/bindings/swig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/bindings/swig.md -------------------------------------------------------------------------------- /docs/examples/cpp/asn1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/cpp/asn1.md -------------------------------------------------------------------------------- /docs/examples/cpp/autogen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/cpp/autogen.md -------------------------------------------------------------------------------- /docs/examples/cpp/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/cpp/basic.md -------------------------------------------------------------------------------- /docs/examples/cpp/cosmocc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/cpp/cosmocc.md -------------------------------------------------------------------------------- /docs/examples/cpp/cppfront.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/cpp/cppfront.md -------------------------------------------------------------------------------- /docs/examples/cpp/cxx-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/cpp/cxx-modules.md -------------------------------------------------------------------------------- /docs/examples/cpp/linux-bpf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/cpp/linux-bpf.md -------------------------------------------------------------------------------- /docs/examples/cpp/linux-driver-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/cpp/linux-driver-module.md -------------------------------------------------------------------------------- /docs/examples/cpp/merge-static-libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/cpp/merge-static-libraries.md -------------------------------------------------------------------------------- /docs/examples/cpp/mfc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/cpp/mfc.md -------------------------------------------------------------------------------- /docs/examples/cpp/openmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/cpp/openmp.md -------------------------------------------------------------------------------- /docs/examples/cpp/protobuf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/cpp/protobuf.md -------------------------------------------------------------------------------- /docs/examples/cpp/qt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/cpp/qt.md -------------------------------------------------------------------------------- /docs/examples/cpp/wasm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/cpp/wasm.md -------------------------------------------------------------------------------- /docs/examples/cpp/wdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/cpp/wdk.md -------------------------------------------------------------------------------- /docs/examples/cpp/winsdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/cpp/winsdk.md -------------------------------------------------------------------------------- /docs/examples/embed/keil-c51.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/embed/keil-c51.md -------------------------------------------------------------------------------- /docs/examples/embed/keil-mdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/embed/keil-mdk.md -------------------------------------------------------------------------------- /docs/examples/embed/verilog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/embed/verilog.md -------------------------------------------------------------------------------- /docs/examples/other-languages/cuda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/other-languages/cuda.md -------------------------------------------------------------------------------- /docs/examples/other-languages/dlang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/other-languages/dlang.md -------------------------------------------------------------------------------- /docs/examples/other-languages/fortran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/other-languages/fortran.md -------------------------------------------------------------------------------- /docs/examples/other-languages/golang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/other-languages/golang.md -------------------------------------------------------------------------------- /docs/examples/other-languages/lex-yacc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/other-languages/lex-yacc.md -------------------------------------------------------------------------------- /docs/examples/other-languages/nim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/other-languages/nim.md -------------------------------------------------------------------------------- /docs/examples/other-languages/objc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/other-languages/objc.md -------------------------------------------------------------------------------- /docs/examples/other-languages/pascal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/other-languages/pascal.md -------------------------------------------------------------------------------- /docs/examples/other-languages/rust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/other-languages/rust.md -------------------------------------------------------------------------------- /docs/examples/other-languages/swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/other-languages/swift.md -------------------------------------------------------------------------------- /docs/examples/other-languages/vala.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/other-languages/vala.md -------------------------------------------------------------------------------- /docs/examples/other-languages/zig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/examples/other-languages/zig.md -------------------------------------------------------------------------------- /docs/guide/basic-commands/build-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/basic-commands/build-configuration.md -------------------------------------------------------------------------------- /docs/guide/basic-commands/build-targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/basic-commands/build-targets.md -------------------------------------------------------------------------------- /docs/guide/basic-commands/create-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/basic-commands/create-project.md -------------------------------------------------------------------------------- /docs/guide/basic-commands/cross-compilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/basic-commands/cross-compilation.md -------------------------------------------------------------------------------- /docs/guide/basic-commands/install-and-uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/basic-commands/install-and-uninstall.md -------------------------------------------------------------------------------- /docs/guide/basic-commands/pack-programs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/basic-commands/pack-programs.md -------------------------------------------------------------------------------- /docs/guide/basic-commands/run-targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/basic-commands/run-targets.md -------------------------------------------------------------------------------- /docs/guide/basic-commands/switch-toolchains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/basic-commands/switch-toolchains.md -------------------------------------------------------------------------------- /docs/guide/best-practices/ai-qa-optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/best-practices/ai-qa-optimization.md -------------------------------------------------------------------------------- /docs/guide/best-practices/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/best-practices/faq.md -------------------------------------------------------------------------------- /docs/guide/best-practices/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/best-practices/performance.md -------------------------------------------------------------------------------- /docs/guide/extensions/builtin-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/extensions/builtin-plugins.md -------------------------------------------------------------------------------- /docs/guide/extensions/ide-integration-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/extensions/ide-integration-plugins.md -------------------------------------------------------------------------------- /docs/guide/extensions/plugin-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/extensions/plugin-development.md -------------------------------------------------------------------------------- /docs/guide/extensions/theme-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/extensions/theme-style.md -------------------------------------------------------------------------------- /docs/guide/extras/autoscan-sourcecode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/extras/autoscan-sourcecode.md -------------------------------------------------------------------------------- /docs/guide/extras/build-cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/extras/build-cache.md -------------------------------------------------------------------------------- /docs/guide/extras/distributed-compilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/extras/distributed-compilation.md -------------------------------------------------------------------------------- /docs/guide/extras/environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/extras/environment-variables.md -------------------------------------------------------------------------------- /docs/guide/extras/remote-compilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/extras/remote-compilation.md -------------------------------------------------------------------------------- /docs/guide/extras/trybuild-3rd-sourcecode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/extras/trybuild-3rd-sourcecode.md -------------------------------------------------------------------------------- /docs/guide/extras/unity-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/extras/unity-build.md -------------------------------------------------------------------------------- /docs/guide/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/introduction.md -------------------------------------------------------------------------------- /docs/guide/package-management/network-optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/package-management/network-optimization.md -------------------------------------------------------------------------------- /docs/guide/package-management/package-distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/package-management/package-distribution.md -------------------------------------------------------------------------------- /docs/guide/package-management/package-management-in-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/package-management/package-management-in-project.md -------------------------------------------------------------------------------- /docs/guide/package-management/repository-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/package-management/repository-management.md -------------------------------------------------------------------------------- /docs/guide/package-management/using-local-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/package-management/using-local-packages.md -------------------------------------------------------------------------------- /docs/guide/package-management/using-official-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/package-management/using-official-packages.md -------------------------------------------------------------------------------- /docs/guide/package-management/using-packages-in-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/package-management/using-packages-in-cmake.md -------------------------------------------------------------------------------- /docs/guide/package-management/using-source-code-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/package-management/using-source-code-packages.md -------------------------------------------------------------------------------- /docs/guide/package-management/using-system-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/package-management/using-system-packages.md -------------------------------------------------------------------------------- /docs/guide/package-management/using-third-party-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/package-management/using-third-party-packages.md -------------------------------------------------------------------------------- /docs/guide/package-management/xrepo-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/package-management/xrepo-cli.md -------------------------------------------------------------------------------- /docs/guide/project-configuration/add-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/project-configuration/add-packages.md -------------------------------------------------------------------------------- /docs/guide/project-configuration/configure-targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/project-configuration/configure-targets.md -------------------------------------------------------------------------------- /docs/guide/project-configuration/custom-rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/project-configuration/custom-rule.md -------------------------------------------------------------------------------- /docs/guide/project-configuration/define-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/project-configuration/define-options.md -------------------------------------------------------------------------------- /docs/guide/project-configuration/multi-level-directories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/project-configuration/multi-level-directories.md -------------------------------------------------------------------------------- /docs/guide/project-configuration/namespace-isolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/project-configuration/namespace-isolation.md -------------------------------------------------------------------------------- /docs/guide/project-configuration/plugin-and-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/project-configuration/plugin-and-task.md -------------------------------------------------------------------------------- /docs/guide/project-configuration/syntax-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/project-configuration/syntax-description.md -------------------------------------------------------------------------------- /docs/guide/project-configuration/toolchain-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/project-configuration/toolchain-configuration.md -------------------------------------------------------------------------------- /docs/guide/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/guide/quick-start.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/posts/add-package-and-autocheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/add-package-and-autocheck.md -------------------------------------------------------------------------------- /docs/posts/api-import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/api-import.md -------------------------------------------------------------------------------- /docs/posts/api-scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/api-scope.md -------------------------------------------------------------------------------- /docs/posts/condition-and-select-compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/condition-and-select-compile.md -------------------------------------------------------------------------------- /docs/posts/custom-option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/custom-option.md -------------------------------------------------------------------------------- /docs/posts/custom-rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/custom-rule.md -------------------------------------------------------------------------------- /docs/posts/custom-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/custom-task.md -------------------------------------------------------------------------------- /docs/posts/how-to-build-a-simple-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/how-to-build-a-simple-project.md -------------------------------------------------------------------------------- /docs/posts/how-to-compile-on-cross-toolchains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/how-to-compile-on-cross-toolchains.md -------------------------------------------------------------------------------- /docs/posts/how-to-install-xmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/how-to-install-xmake.md -------------------------------------------------------------------------------- /docs/posts/new-feature-announcement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/new-feature-announcement.md -------------------------------------------------------------------------------- /docs/posts/package-target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/package-target.md -------------------------------------------------------------------------------- /docs/posts/precompiled-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/precompiled-header.md -------------------------------------------------------------------------------- /docs/posts/project-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/project-description.md -------------------------------------------------------------------------------- /docs/posts/quickstart-1-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/quickstart-1-installation.md -------------------------------------------------------------------------------- /docs/posts/quickstart-10-target-deps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/quickstart-10-target-deps.md -------------------------------------------------------------------------------- /docs/posts/quickstart-11-subprojects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/quickstart-11-subprojects.md -------------------------------------------------------------------------------- /docs/posts/quickstart-12-custom-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/quickstart-12-custom-scripts.md -------------------------------------------------------------------------------- /docs/posts/quickstart-2-create-and-build-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/quickstart-2-create-and-build-project.md -------------------------------------------------------------------------------- /docs/posts/quickstart-3-run-and-debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/quickstart-3-run-and-debug.md -------------------------------------------------------------------------------- /docs/posts/quickstart-4-basic-project-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/quickstart-4-basic-project-settings.md -------------------------------------------------------------------------------- /docs/posts/quickstart-5-build-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/quickstart-5-build-android.md -------------------------------------------------------------------------------- /docs/posts/quickstart-6-build-qt-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/quickstart-6-build-qt-project.md -------------------------------------------------------------------------------- /docs/posts/quickstart-7-build-cuda-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/quickstart-7-build-cuda-project.md -------------------------------------------------------------------------------- /docs/posts/quickstart-8-switch-build-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/quickstart-8-switch-build-mode.md -------------------------------------------------------------------------------- /docs/posts/quickstart-9-cross-compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/quickstart-9-cross-compile.md -------------------------------------------------------------------------------- /docs/posts/variables-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/variables-usage.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.5.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.5.1.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.5.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.5.2.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.5.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.5.3.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.5.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.5.4.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.5.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.5.5.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.5.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.5.6.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.5.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.5.7.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.5.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.5.8.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.5.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.5.9.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.6.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.6.1.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.6.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.6.2.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.6.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.6.3.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.6.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.6.4.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.6.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.6.5.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.6.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.6.6.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.7.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.7.1.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.7.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.7.2.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.7.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.7.3.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.7.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.7.6.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.7.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.7.7.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.7.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.7.8.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.8.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.8.1.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.8.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.8.2.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.8.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.8.3.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.8.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.8.5.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.8.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.8.6.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.8.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.8.7.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v2.9.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v2.9.1.md -------------------------------------------------------------------------------- /docs/posts/xmake-update-v3.0.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/posts/xmake-update-v3.0.5.md -------------------------------------------------------------------------------- /docs/public/assets/img/afdian-xmake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/afdian-xmake.png -------------------------------------------------------------------------------- /docs/public/assets/img/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/alipay.png -------------------------------------------------------------------------------- /docs/public/assets/img/cprint_colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/cprint_colors.png -------------------------------------------------------------------------------- /docs/public/assets/img/cprint_emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/cprint_emoji.png -------------------------------------------------------------------------------- /docs/public/assets/img/donate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/donate.gif -------------------------------------------------------------------------------- /docs/public/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/favicon.ico -------------------------------------------------------------------------------- /docs/public/assets/img/github_sponsor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/github_sponsor.png -------------------------------------------------------------------------------- /docs/public/assets/img/guide/macapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/guide/macapp.png -------------------------------------------------------------------------------- /docs/public/assets/img/guide/qt_quickapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/guide/qt_quickapp.png -------------------------------------------------------------------------------- /docs/public/assets/img/guide/qt_widgetapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/guide/qt_widgetapp.png -------------------------------------------------------------------------------- /docs/public/assets/img/guide/vscode_status_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/guide/vscode_status_bar.png -------------------------------------------------------------------------------- /docs/public/assets/img/index/add_require.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/index/add_require.png -------------------------------------------------------------------------------- /docs/public/assets/img/index/menuconf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/index/menuconf.gif -------------------------------------------------------------------------------- /docs/public/assets/img/index/menuconf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/index/menuconf.png -------------------------------------------------------------------------------- /docs/public/assets/img/index/package.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/index/package.gif -------------------------------------------------------------------------------- /docs/public/assets/img/index/package_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/index/package_arch.png -------------------------------------------------------------------------------- /docs/public/assets/img/index/package_manage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/index/package_manage.png -------------------------------------------------------------------------------- /docs/public/assets/img/index/showcode1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/index/showcode1.png -------------------------------------------------------------------------------- /docs/public/assets/img/index/xmake-basic-render.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/index/xmake-basic-render.gif -------------------------------------------------------------------------------- /docs/public/assets/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/logo.png -------------------------------------------------------------------------------- /docs/public/assets/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/logo.svg -------------------------------------------------------------------------------- /docs/public/assets/img/manual/filegroup1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/manual/filegroup1.png -------------------------------------------------------------------------------- /docs/public/assets/img/manual/filegroup2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/manual/filegroup2.png -------------------------------------------------------------------------------- /docs/public/assets/img/manual/filegroup3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/manual/filegroup3.png -------------------------------------------------------------------------------- /docs/public/assets/img/manual/nsis_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/manual/nsis_1.png -------------------------------------------------------------------------------- /docs/public/assets/img/manual/nsis_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/manual/nsis_2.png -------------------------------------------------------------------------------- /docs/public/assets/img/manual/nsis_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/manual/nsis_3.png -------------------------------------------------------------------------------- /docs/public/assets/img/manual/nsis_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/manual/nsis_4.png -------------------------------------------------------------------------------- /docs/public/assets/img/manual/option_set_category.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/manual/option_set_category.gif -------------------------------------------------------------------------------- /docs/public/assets/img/manual/option_set_values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/manual/option_set_values.png -------------------------------------------------------------------------------- /docs/public/assets/img/manual/property_page_vsxmake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/manual/property_page_vsxmake.png -------------------------------------------------------------------------------- /docs/public/assets/img/manual/qt_vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/manual/qt_vs.png -------------------------------------------------------------------------------- /docs/public/assets/img/manual/set_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/manual/set_group.png -------------------------------------------------------------------------------- /docs/public/assets/img/manual/xmake-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/manual/xmake-debug.png -------------------------------------------------------------------------------- /docs/public/assets/img/manual/xmake-debug2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/manual/xmake-debug2.png -------------------------------------------------------------------------------- /docs/public/assets/img/manual/xmake-remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/manual/xmake-remote.png -------------------------------------------------------------------------------- /docs/public/assets/img/manual/xmake-test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/manual/xmake-test1.png -------------------------------------------------------------------------------- /docs/public/assets/img/manual/xmake-test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/manual/xmake-test2.png -------------------------------------------------------------------------------- /docs/public/assets/img/patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/patreon.png -------------------------------------------------------------------------------- /docs/public/assets/img/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/paypal.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/build-artifacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/build-artifacts.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/build-stats-2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/build-stats-2020.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/build_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/build_demo.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/check_root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/check_root.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/commits-2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/commits-2020.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/cprint_colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/cprint_colors.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/cprint_emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/cprint_emoji.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/cuda_test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/cuda_test.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/discord.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/haiku.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/haiku.jpeg -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/logo128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/logo128.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/logo256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/logo256.ico -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/logo256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/logo256.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/logo256c.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/logo256c.ico -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/logo256c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/logo256c.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/logo32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/logo32.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/logo64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/logo64.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/mac-catalyst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/mac-catalyst.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/mainmenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/mainmenu.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/menuconf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/menuconf.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/muslcc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/muslcc.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/ollydbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/ollydbg.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/option_set_category.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/option_set_category.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/option_set_values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/option_set_values.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/renderdoc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/renderdoc.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/safer_installation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/safer_installation.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/searchconf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/searchconf.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/star-history-2019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/star-history-2019.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/star-history-2020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/star-history-2020.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/star-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/star-history.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/usage_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/usage_demo.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/videodemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/videodemo.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/vscode-qt.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/vscode-qt.jpeg -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/vsjitdebugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/vsjitdebugger.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-cmake.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-cmake.jpeg -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-commit-8k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-commit-8k.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-compilation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-compilation.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-docs.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-idea-create_project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-idea-create_project.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-idea-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-idea-menu.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-idea-output_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-idea-output_panel.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-idea-problem.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-idea-problem.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-idea-project_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-idea-project_configuration.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-idea-quickstart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-idea-quickstart.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-idea-run_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-idea-run_configuration.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-metal.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-packages.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-qt-wasm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-qt-wasm.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-star-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-star-history.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-stats-2019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-stats-2019.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-sublime-build_run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-sublime-build_run.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-sublime-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-sublime-commands.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-sublime-completion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-sublime-completion.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-sublime-configuration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-sublime-configuration.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-sublime-problem.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-sublime-problem.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-sublime-quickstart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-sublime-quickstart.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-sublime-statusbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-sublime-statusbar.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-verbose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-verbose.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-vscode-build.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-vscode-build.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-vscode-channel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-vscode-channel.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-vscode-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-vscode-commands.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-vscode-completion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-vscode-completion.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-vscode-configure.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-vscode-configure.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-vscode-configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-vscode-configure.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-vscode-debug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-vscode-debug.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-vscode-debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-vscode-debug.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-vscode-hello1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-vscode-hello1.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-vscode-hello2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-vscode-hello2.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-vscode-market.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-vscode-market.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-vscode-problem.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-vscode-problem.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-vscode-projects.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-vscode-projects.jpg -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-vscode-record.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-vscode-record.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-vscode-statusbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-vscode-statusbar.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-vscode-yo-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-vscode-yo-code.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-vscode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-vscode.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake-watch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake-watch.gif -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake_site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake_site.png -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/xmake_summer.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/xmake_summer.jpeg -------------------------------------------------------------------------------- /docs/public/assets/img/posts/xmake/zig_author.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/posts/xmake/zig_author.png -------------------------------------------------------------------------------- /docs/public/assets/img/progress-multirow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/progress-multirow.png -------------------------------------------------------------------------------- /docs/public/assets/img/speed_skating.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/speed_skating.svg -------------------------------------------------------------------------------- /docs/public/assets/img/theme/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/theme/default.png -------------------------------------------------------------------------------- /docs/public/assets/img/theme/emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/theme/emoji.png -------------------------------------------------------------------------------- /docs/public/assets/img/theme/ninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/theme/ninja.png -------------------------------------------------------------------------------- /docs/public/assets/img/weixin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/weixin.png -------------------------------------------------------------------------------- /docs/public/assets/img/xmake-cup.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/xmake-cup.jpeg -------------------------------------------------------------------------------- /docs/public/assets/img/xmake-cup2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/xmake-cup2.jpeg -------------------------------------------------------------------------------- /docs/public/assets/img/xmake-cup3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/xmake-cup3.png -------------------------------------------------------------------------------- /docs/public/assets/img/xmake-cup4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/xmake-cup4.jpeg -------------------------------------------------------------------------------- /docs/public/assets/img/xmake-logo-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/xmake-logo-card.png -------------------------------------------------------------------------------- /docs/public/assets/img/xmake-logo-card.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/xmake-logo-card.psd -------------------------------------------------------------------------------- /docs/public/assets/img/xmake-logo-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/xmake-logo-large.png -------------------------------------------------------------------------------- /docs/public/assets/img/xmake_course.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/assets/img/xmake_course.png -------------------------------------------------------------------------------- /docs/public/psget.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/psget.text -------------------------------------------------------------------------------- /docs/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/robots.txt -------------------------------------------------------------------------------- /docs/public/shget.text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/public/shget.text -------------------------------------------------------------------------------- /docs/sidebar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/sidebar.ts -------------------------------------------------------------------------------- /docs/zh/about/contact.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/about/contact.md -------------------------------------------------------------------------------- /docs/zh/about/course.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/about/course.md -------------------------------------------------------------------------------- /docs/zh/about/peripheral_items.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/about/peripheral_items.md -------------------------------------------------------------------------------- /docs/zh/about/sponsor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/about/sponsor.md -------------------------------------------------------------------------------- /docs/zh/about/who_is_using_xmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/about/who_is_using_xmake.md -------------------------------------------------------------------------------- /docs/zh/api/description/builtin-policies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/description/builtin-policies.md -------------------------------------------------------------------------------- /docs/zh/api/description/builtin-rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/description/builtin-rules.md -------------------------------------------------------------------------------- /docs/zh/api/description/builtin-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/description/builtin-variables.md -------------------------------------------------------------------------------- /docs/zh/api/description/conditions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/description/conditions.md -------------------------------------------------------------------------------- /docs/zh/api/description/configuration-option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/description/configuration-option.md -------------------------------------------------------------------------------- /docs/zh/api/description/custom-rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/description/custom-rule.md -------------------------------------------------------------------------------- /docs/zh/api/description/custom-toolchain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/description/custom-toolchain.md -------------------------------------------------------------------------------- /docs/zh/api/description/global-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/description/global-interfaces.md -------------------------------------------------------------------------------- /docs/zh/api/description/helper-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/description/helper-interfaces.md -------------------------------------------------------------------------------- /docs/zh/api/description/package-dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/description/package-dependencies.md -------------------------------------------------------------------------------- /docs/zh/api/description/plugin-and-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/description/plugin-and-task.md -------------------------------------------------------------------------------- /docs/zh/api/description/project-target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/description/project-target.md -------------------------------------------------------------------------------- /docs/zh/api/description/specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/description/specification.md -------------------------------------------------------------------------------- /docs/zh/api/description/xpack-component-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/description/xpack-component-interfaces.md -------------------------------------------------------------------------------- /docs/zh/api/description/xpack-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/description/xpack-interfaces.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/coroutine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/coroutine.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/cprint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/cprint.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/cprintf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/cprintf.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/format.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/hash.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/import.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/inherit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/inherit.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/io.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/ipairs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/ipairs.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/linuxos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/linuxos.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/macos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/macos.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/os.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/os.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/pairs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/pairs.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/path.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/print.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/printf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/printf.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/raise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/raise.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/signal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/signal.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/string.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/table.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/try-catch-finally.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/try-catch-finally.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/vformat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/vformat.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/builtin-modules/winos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/builtin-modules/winos.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/async/jobgraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/async/jobgraph.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/async/runjobs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/async/runjobs.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/cli/amalgamate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/cli/amalgamate.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/bit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/bit.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/bloom_filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/bloom_filter.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/bytes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/bytes.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/cpu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/cpu.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/global.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/global.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/graph.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/hashset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/hashset.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/heap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/heap.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/json.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/libc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/libc.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/list.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/option.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/pipe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/pipe.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/privilege.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/privilege.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/process.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/queue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/queue.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/scheduler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/scheduler.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/semver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/semver.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/socket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/socket.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/task.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/thread.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/thread.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/tty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/tty.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/base/xml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/base/xml.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/cache/detectcache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/cache/detectcache.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/cache/global_detectcache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/cache/global_detectcache.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/cache/globalcache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/cache/globalcache.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/cache/localcache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/cache/localcache.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/cache/memcache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/cache/memcache.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/compress/lz4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/compress/lz4.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/language/language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/language/language.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/project/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/project/config.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/project/project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/project/project.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/tool/compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/tool/compiler.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/tool/linker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/tool/linker.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/ui/action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/ui/action.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/ui/application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/ui/application.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/ui/boxdialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/ui/boxdialog.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/ui/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/ui/button.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/ui/choicebox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/ui/choicebox.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/ui/choicedialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/ui/choicedialog.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/ui/dialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/ui/dialog.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/ui/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/ui/event.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/ui/inputdialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/ui/inputdialog.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/ui/label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/ui/label.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/ui/mconfdialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/ui/mconfdialog.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/ui/menubar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/ui/menubar.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/ui/scrollbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/ui/scrollbar.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/ui/statusbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/ui/statusbar.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/ui/textdialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/ui/textdialog.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/ui/textedit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/ui/textedit.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/ui/view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/ui/view.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/core/ui/window.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/core/ui/window.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/devel/git.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/devel/git.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/lib/detect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/lib/detect.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/lib/lua/package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/lib/lua/package.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/net/http.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/net/http.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/net/ping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/net/ping.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/package/tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/package/tools.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/privilege/sudo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/privilege/sudo.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/utils/archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/utils/archive.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/extension-modules/utils/platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/extension-modules/utils/platform.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/native-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/native-modules.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/option-instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/option-instance.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/package-instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/package-instance.md -------------------------------------------------------------------------------- /docs/zh/api/scripts/target-instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/api/scripts/target-instance.md -------------------------------------------------------------------------------- /docs/zh/blog/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/blog/index.md -------------------------------------------------------------------------------- /docs/zh/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/config.ts -------------------------------------------------------------------------------- /docs/zh/examples/bindings/lua-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/bindings/lua-module.md -------------------------------------------------------------------------------- /docs/zh/examples/bindings/nodejs-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/bindings/nodejs-module.md -------------------------------------------------------------------------------- /docs/zh/examples/bindings/python-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/bindings/python-module.md -------------------------------------------------------------------------------- /docs/zh/examples/bindings/swig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/bindings/swig.md -------------------------------------------------------------------------------- /docs/zh/examples/cpp/asn1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/cpp/asn1.md -------------------------------------------------------------------------------- /docs/zh/examples/cpp/autogen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/cpp/autogen.md -------------------------------------------------------------------------------- /docs/zh/examples/cpp/basic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/cpp/basic.md -------------------------------------------------------------------------------- /docs/zh/examples/cpp/cosmocc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/cpp/cosmocc.md -------------------------------------------------------------------------------- /docs/zh/examples/cpp/cppfront.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/cpp/cppfront.md -------------------------------------------------------------------------------- /docs/zh/examples/cpp/cxx-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/cpp/cxx-modules.md -------------------------------------------------------------------------------- /docs/zh/examples/cpp/linux-bpf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/cpp/linux-bpf.md -------------------------------------------------------------------------------- /docs/zh/examples/cpp/linux-driver-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/cpp/linux-driver-module.md -------------------------------------------------------------------------------- /docs/zh/examples/cpp/merge-static-libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/cpp/merge-static-libraries.md -------------------------------------------------------------------------------- /docs/zh/examples/cpp/mfc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/cpp/mfc.md -------------------------------------------------------------------------------- /docs/zh/examples/cpp/openmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/cpp/openmp.md -------------------------------------------------------------------------------- /docs/zh/examples/cpp/protobuf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/cpp/protobuf.md -------------------------------------------------------------------------------- /docs/zh/examples/cpp/qt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/cpp/qt.md -------------------------------------------------------------------------------- /docs/zh/examples/cpp/wasm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/cpp/wasm.md -------------------------------------------------------------------------------- /docs/zh/examples/cpp/wdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/cpp/wdk.md -------------------------------------------------------------------------------- /docs/zh/examples/cpp/winsdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/cpp/winsdk.md -------------------------------------------------------------------------------- /docs/zh/examples/embed/keil-c51.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/embed/keil-c51.md -------------------------------------------------------------------------------- /docs/zh/examples/embed/keil-mdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/embed/keil-mdk.md -------------------------------------------------------------------------------- /docs/zh/examples/embed/verilog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/embed/verilog.md -------------------------------------------------------------------------------- /docs/zh/examples/other-languages/cuda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/other-languages/cuda.md -------------------------------------------------------------------------------- /docs/zh/examples/other-languages/dlang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/other-languages/dlang.md -------------------------------------------------------------------------------- /docs/zh/examples/other-languages/fortran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/other-languages/fortran.md -------------------------------------------------------------------------------- /docs/zh/examples/other-languages/golang.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/other-languages/golang.md -------------------------------------------------------------------------------- /docs/zh/examples/other-languages/lex-yacc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/other-languages/lex-yacc.md -------------------------------------------------------------------------------- /docs/zh/examples/other-languages/nim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/other-languages/nim.md -------------------------------------------------------------------------------- /docs/zh/examples/other-languages/objc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/other-languages/objc.md -------------------------------------------------------------------------------- /docs/zh/examples/other-languages/pascal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/other-languages/pascal.md -------------------------------------------------------------------------------- /docs/zh/examples/other-languages/rust.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/other-languages/rust.md -------------------------------------------------------------------------------- /docs/zh/examples/other-languages/swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/other-languages/swift.md -------------------------------------------------------------------------------- /docs/zh/examples/other-languages/vala.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/other-languages/vala.md -------------------------------------------------------------------------------- /docs/zh/examples/other-languages/zig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/examples/other-languages/zig.md -------------------------------------------------------------------------------- /docs/zh/guide/basic-commands/build-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/basic-commands/build-configuration.md -------------------------------------------------------------------------------- /docs/zh/guide/basic-commands/build-targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/basic-commands/build-targets.md -------------------------------------------------------------------------------- /docs/zh/guide/basic-commands/create-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/basic-commands/create-project.md -------------------------------------------------------------------------------- /docs/zh/guide/basic-commands/cross-compilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/basic-commands/cross-compilation.md -------------------------------------------------------------------------------- /docs/zh/guide/basic-commands/install-and-uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/basic-commands/install-and-uninstall.md -------------------------------------------------------------------------------- /docs/zh/guide/basic-commands/pack-programs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/basic-commands/pack-programs.md -------------------------------------------------------------------------------- /docs/zh/guide/basic-commands/run-targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/basic-commands/run-targets.md -------------------------------------------------------------------------------- /docs/zh/guide/basic-commands/switch-toolchains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/basic-commands/switch-toolchains.md -------------------------------------------------------------------------------- /docs/zh/guide/best-practices/ai-qa-optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/best-practices/ai-qa-optimization.md -------------------------------------------------------------------------------- /docs/zh/guide/best-practices/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/best-practices/faq.md -------------------------------------------------------------------------------- /docs/zh/guide/best-practices/performance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/best-practices/performance.md -------------------------------------------------------------------------------- /docs/zh/guide/extensions/builtin-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/extensions/builtin-plugins.md -------------------------------------------------------------------------------- /docs/zh/guide/extensions/ide-integration-plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/extensions/ide-integration-plugins.md -------------------------------------------------------------------------------- /docs/zh/guide/extensions/plugin-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/extensions/plugin-development.md -------------------------------------------------------------------------------- /docs/zh/guide/extensions/theme-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/extensions/theme-style.md -------------------------------------------------------------------------------- /docs/zh/guide/extras/autoscan-sourcecode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/extras/autoscan-sourcecode.md -------------------------------------------------------------------------------- /docs/zh/guide/extras/build-cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/extras/build-cache.md -------------------------------------------------------------------------------- /docs/zh/guide/extras/distributed-compilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/extras/distributed-compilation.md -------------------------------------------------------------------------------- /docs/zh/guide/extras/environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/extras/environment-variables.md -------------------------------------------------------------------------------- /docs/zh/guide/extras/remote-compilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/extras/remote-compilation.md -------------------------------------------------------------------------------- /docs/zh/guide/extras/trybuild-3rd-sourcecode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/extras/trybuild-3rd-sourcecode.md -------------------------------------------------------------------------------- /docs/zh/guide/extras/unity-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/extras/unity-build.md -------------------------------------------------------------------------------- /docs/zh/guide/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/introduction.md -------------------------------------------------------------------------------- /docs/zh/guide/package-management/network-optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/package-management/network-optimization.md -------------------------------------------------------------------------------- /docs/zh/guide/package-management/package-distribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/package-management/package-distribution.md -------------------------------------------------------------------------------- /docs/zh/guide/package-management/package-management-in-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/package-management/package-management-in-project.md -------------------------------------------------------------------------------- /docs/zh/guide/package-management/repository-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/package-management/repository-management.md -------------------------------------------------------------------------------- /docs/zh/guide/package-management/using-local-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/package-management/using-local-packages.md -------------------------------------------------------------------------------- /docs/zh/guide/package-management/using-official-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/package-management/using-official-packages.md -------------------------------------------------------------------------------- /docs/zh/guide/package-management/using-packages-in-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/package-management/using-packages-in-cmake.md -------------------------------------------------------------------------------- /docs/zh/guide/package-management/using-source-code-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/package-management/using-source-code-packages.md -------------------------------------------------------------------------------- /docs/zh/guide/package-management/using-system-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/package-management/using-system-packages.md -------------------------------------------------------------------------------- /docs/zh/guide/package-management/using-third-party-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/package-management/using-third-party-packages.md -------------------------------------------------------------------------------- /docs/zh/guide/package-management/xrepo-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/package-management/xrepo-cli.md -------------------------------------------------------------------------------- /docs/zh/guide/project-configuration/add-packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/project-configuration/add-packages.md -------------------------------------------------------------------------------- /docs/zh/guide/project-configuration/configure-targets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/project-configuration/configure-targets.md -------------------------------------------------------------------------------- /docs/zh/guide/project-configuration/custom-rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/project-configuration/custom-rule.md -------------------------------------------------------------------------------- /docs/zh/guide/project-configuration/define-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/project-configuration/define-options.md -------------------------------------------------------------------------------- /docs/zh/guide/project-configuration/multi-level-directories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/project-configuration/multi-level-directories.md -------------------------------------------------------------------------------- /docs/zh/guide/project-configuration/namespace-isolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/project-configuration/namespace-isolation.md -------------------------------------------------------------------------------- /docs/zh/guide/project-configuration/plugin-and-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/project-configuration/plugin-and-task.md -------------------------------------------------------------------------------- /docs/zh/guide/project-configuration/syntax-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/project-configuration/syntax-description.md -------------------------------------------------------------------------------- /docs/zh/guide/project-configuration/toolchain-configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/project-configuration/toolchain-configuration.md -------------------------------------------------------------------------------- /docs/zh/guide/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/guide/quick-start.md -------------------------------------------------------------------------------- /docs/zh/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/index.md -------------------------------------------------------------------------------- /docs/zh/posts/add-package-and-autocheck.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/add-package-and-autocheck.md -------------------------------------------------------------------------------- /docs/zh/posts/api-import.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/api-import.md -------------------------------------------------------------------------------- /docs/zh/posts/api-scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/api-scope.md -------------------------------------------------------------------------------- /docs/zh/posts/app-to-ipa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/app-to-ipa.md -------------------------------------------------------------------------------- /docs/zh/posts/batch-check-library-interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/batch-check-library-interfaces.md -------------------------------------------------------------------------------- /docs/zh/posts/binding-option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/binding-option.md -------------------------------------------------------------------------------- /docs/zh/posts/build-project-so-simply.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/build-project-so-simply.md -------------------------------------------------------------------------------- /docs/zh/posts/compile-swift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/compile-swift.md -------------------------------------------------------------------------------- /docs/zh/posts/compiler-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/compiler-features.md -------------------------------------------------------------------------------- /docs/zh/posts/condition-and-select-compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/condition-and-select-compile.md -------------------------------------------------------------------------------- /docs/zh/posts/config-files-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/config-files-options.md -------------------------------------------------------------------------------- /docs/zh/posts/cross-platform-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/cross-platform-development.md -------------------------------------------------------------------------------- /docs/zh/posts/custom-action.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/custom-action.md -------------------------------------------------------------------------------- /docs/zh/posts/custom-option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/custom-option.md -------------------------------------------------------------------------------- /docs/zh/posts/custom-rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/custom-rule.md -------------------------------------------------------------------------------- /docs/zh/posts/custom-task.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/custom-task.md -------------------------------------------------------------------------------- /docs/zh/posts/enable-pdb-for-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/enable-pdb-for-windows.md -------------------------------------------------------------------------------- /docs/zh/posts/enable-pdb-on-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/enable-pdb-on-windows.md -------------------------------------------------------------------------------- /docs/zh/posts/generate-vs2008-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/generate-vs2008-project.md -------------------------------------------------------------------------------- /docs/zh/posts/how-to-build-a-simple-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/how-to-build-a-simple-project.md -------------------------------------------------------------------------------- /docs/zh/posts/how-to-compile-on-cross-toolchains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/how-to-compile-on-cross-toolchains.md -------------------------------------------------------------------------------- /docs/zh/posts/includes-check.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/includes-check.md -------------------------------------------------------------------------------- /docs/zh/posts/lua-profiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/lua-profiler.md -------------------------------------------------------------------------------- /docs/zh/posts/merge-static-library.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/merge-static-library.md -------------------------------------------------------------------------------- /docs/zh/posts/next-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/next-plan.md -------------------------------------------------------------------------------- /docs/zh/posts/plugin-arguments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/plugin-arguments.md -------------------------------------------------------------------------------- /docs/zh/posts/plugin-doxygen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/plugin-doxygen.md -------------------------------------------------------------------------------- /docs/zh/posts/plugin-lua.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/plugin-lua.md -------------------------------------------------------------------------------- /docs/zh/posts/plugin-macro-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/plugin-macro-package.md -------------------------------------------------------------------------------- /docs/zh/posts/plugin-macro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/plugin-macro.md -------------------------------------------------------------------------------- /docs/zh/posts/plugin-modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/plugin-modules.md -------------------------------------------------------------------------------- /docs/zh/posts/plugin-print-colors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/plugin-print-colors.md -------------------------------------------------------------------------------- /docs/zh/posts/precompiled-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/precompiled-header.md -------------------------------------------------------------------------------- /docs/zh/posts/project-add-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/project-add-files.md -------------------------------------------------------------------------------- /docs/zh/posts/project-compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/project-compile.md -------------------------------------------------------------------------------- /docs/zh/posts/project-desciption-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/project-desciption-examples.md -------------------------------------------------------------------------------- /docs/zh/posts/project-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/project-description.md -------------------------------------------------------------------------------- /docs/zh/posts/quickstart-1-installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/quickstart-1-installation.md -------------------------------------------------------------------------------- /docs/zh/posts/quickstart-10-target-deps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/quickstart-10-target-deps.md -------------------------------------------------------------------------------- /docs/zh/posts/quickstart-11-subprojects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/quickstart-11-subprojects.md -------------------------------------------------------------------------------- /docs/zh/posts/quickstart-12-custom-scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/quickstart-12-custom-scripts.md -------------------------------------------------------------------------------- /docs/zh/posts/quickstart-2-create-and-build-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/quickstart-2-create-and-build-project.md -------------------------------------------------------------------------------- /docs/zh/posts/quickstart-3-run-and-debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/quickstart-3-run-and-debug.md -------------------------------------------------------------------------------- /docs/zh/posts/quickstart-4-basic-project-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/quickstart-4-basic-project-settings.md -------------------------------------------------------------------------------- /docs/zh/posts/quickstart-5-build-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/quickstart-5-build-android.md -------------------------------------------------------------------------------- /docs/zh/posts/quickstart-6-build-qt-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/quickstart-6-build-qt-project.md -------------------------------------------------------------------------------- /docs/zh/posts/quickstart-7-build-cuda-project.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/quickstart-7-build-cuda-project.md -------------------------------------------------------------------------------- /docs/zh/posts/quickstart-8-switch-build-mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/quickstart-8-switch-build-mode.md -------------------------------------------------------------------------------- /docs/zh/posts/quickstart-9-cross-compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/quickstart-9-cross-compile.md -------------------------------------------------------------------------------- /docs/zh/posts/run-debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/run-debug.md -------------------------------------------------------------------------------- /docs/zh/posts/safer-install-and-uninstall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/safer-install-and-uninstall.md -------------------------------------------------------------------------------- /docs/zh/posts/simplify-xmake-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/simplify-xmake-description.md -------------------------------------------------------------------------------- /docs/zh/posts/support-cuda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/support-cuda.md -------------------------------------------------------------------------------- /docs/zh/posts/support-wdk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/support-wdk.md -------------------------------------------------------------------------------- /docs/zh/posts/switch-library-kind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/switch-library-kind.md -------------------------------------------------------------------------------- /docs/zh/posts/try-catch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/try-catch.md -------------------------------------------------------------------------------- /docs/zh/posts/v2.1.1-goal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/v2.1.1-goal.md -------------------------------------------------------------------------------- /docs/zh/posts/variables-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/variables-usage.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-community.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-course-build-c-projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-course-build-c-projects.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-in-2020.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-in-2020.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-sourcecode-arch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-sourcecode-arch.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-summer-2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-summer-2022.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-summer-ospp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-summer-ospp.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.5.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.5.1.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.5.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.5.2.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.5.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.5.3.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.5.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.5.4.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.5.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.5.5.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.5.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.5.6.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.5.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.5.7.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.5.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.5.8.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.5.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.5.9.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.6.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.6.1.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.6.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.6.2.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.6.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.6.3.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.6.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.6.4.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.6.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.6.5.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.6.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.6.6.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.7.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.7.1.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.7.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.7.2.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.7.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.7.3.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.7.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.7.6.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.7.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.7.7.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.7.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.7.8.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.8.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.8.1.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.8.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.8.2.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.8.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.8.3.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.8.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.8.5.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.8.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.8.6.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.8.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.8.7.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v2.9.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v2.9.1.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-update-v3.0.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-update-v3.0.5.md -------------------------------------------------------------------------------- /docs/zh/posts/xmake-vscode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/docs/zh/posts/xmake-vscode.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/package.json -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/generate-blog-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/scripts/generate-blog-data.js -------------------------------------------------------------------------------- /scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake-docs/HEAD/scripts/run.sh --------------------------------------------------------------------------------