├── .clang-format ├── .gitattributes ├── .github └── workflows │ ├── archlinux.yml │ ├── cosmocc.yml │ ├── dragonflybsd.yml │ ├── fedora.yml │ ├── freebsd.yml │ ├── issue-translator.yml │ ├── linux.yml │ ├── linux_arm64.yml │ ├── linux_luajit.yml │ ├── macos.yml │ ├── macos_arm64.yml │ ├── msys2_mingw.yml │ ├── netbsd.yml │ ├── openbsd.yml │ ├── solaris.yml │ ├── windows.yml │ └── windows_luajit.yml ├── .gitignore ├── .gitmodules ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── NOTICE.md ├── README.md ├── README_zh.md ├── configure ├── core ├── src │ ├── cli │ │ ├── xmake.c │ │ ├── xmake.ico │ │ ├── xmake.lua │ │ ├── xmake.rc │ │ └── xmake.sh │ ├── lua-cjson │ │ ├── xmake.lua │ │ └── xmake.sh │ ├── lua │ │ ├── xmake.lua │ │ └── xmake.sh │ ├── luajit │ │ ├── xmake.lua │ │ └── xmake.sh │ ├── lz4 │ │ ├── xmake.lua │ │ └── xmake.sh │ ├── pdcurses │ │ └── xmake.lua │ ├── sv │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── xmake.lua │ │ └── xmake.sh │ ├── tbox │ │ ├── inc │ │ │ ├── bsd │ │ │ │ └── tbox.config.h │ │ │ ├── cygwin │ │ │ │ └── tbox.config.h │ │ │ ├── haiku │ │ │ │ └── tbox.config.h │ │ │ ├── iphoneos │ │ │ │ └── tbox.config.h │ │ │ ├── linux │ │ │ │ └── tbox.config.h │ │ │ ├── macosx │ │ │ │ └── tbox.config.h │ │ │ ├── mingw │ │ │ │ └── tbox.config.h │ │ │ ├── msys │ │ │ │ └── tbox.config.h │ │ │ └── solaris │ │ │ │ └── tbox.config.h │ │ ├── xmake.lua │ │ └── xmake.sh │ ├── xmake │ │ ├── base64 │ │ │ ├── decode.c │ │ │ ├── encode.c │ │ │ └── prefix.h │ │ ├── binutils │ │ │ ├── ar │ │ │ │ ├── prefix.h │ │ │ │ └── readsyms.c │ │ │ ├── bin2c.c │ │ │ ├── coff │ │ │ │ ├── bin2coff.c │ │ │ │ ├── prefix.h │ │ │ │ └── readsyms.c │ │ │ ├── elf │ │ │ │ ├── bin2elf.c │ │ │ │ ├── prefix.h │ │ │ │ └── readsyms.c │ │ │ ├── macho │ │ │ │ ├── bin2macho.c │ │ │ │ ├── prefix.h │ │ │ │ └── readsyms.c │ │ │ ├── prefix.h │ │ │ └── readsyms.c │ │ ├── bloom_filter │ │ │ ├── bloom_filter_clear.c │ │ │ ├── bloom_filter_close.c │ │ │ ├── bloom_filter_data.c │ │ │ ├── bloom_filter_data_set.c │ │ │ ├── bloom_filter_get.c │ │ │ ├── bloom_filter_open.c │ │ │ ├── bloom_filter_set.c │ │ │ ├── bloom_filter_size.c │ │ │ └── prefix.h │ │ ├── config.h │ │ ├── curses │ │ │ ├── curses.c │ │ │ └── prefix.h │ │ ├── engine.c │ │ ├── engine.h │ │ ├── engine_pool.c │ │ ├── engine_pool.h │ │ ├── fwatcher │ │ │ ├── add.c │ │ │ ├── close.c │ │ │ ├── open.c │ │ │ ├── prefix.h │ │ │ ├── remove.c │ │ │ └── wait.c │ │ ├── hash │ │ │ ├── md5.c │ │ │ ├── prefix.h │ │ │ ├── rand128.c │ │ │ ├── rand32.c │ │ │ ├── rand64.c │ │ │ ├── sha.c │ │ │ ├── uuid4.c │ │ │ └── xxhash.c │ │ ├── io │ │ │ ├── file_close.c │ │ │ ├── file_flush.c │ │ │ ├── file_isatty.c │ │ │ ├── file_open.c │ │ │ ├── file_rawfd.c │ │ │ ├── file_read.c │ │ │ ├── file_readable.c │ │ │ ├── file_seek.c │ │ │ ├── file_size.c │ │ │ ├── file_write.c │ │ │ ├── filelock_close.c │ │ │ ├── filelock_lock.c │ │ │ ├── filelock_open.c │ │ │ ├── filelock_trylock.c │ │ │ ├── filelock_unlock.c │ │ │ ├── iscygpty.c │ │ │ ├── pipe_close.c │ │ │ ├── pipe_connect.c │ │ │ ├── pipe_open.c │ │ │ ├── pipe_openpair.c │ │ │ ├── pipe_read.c │ │ │ ├── pipe_wait.c │ │ │ ├── pipe_write.c │ │ │ ├── poller.c │ │ │ ├── poller.h │ │ │ ├── poller_insert.c │ │ │ ├── poller_modify.c │ │ │ ├── poller_remove.c │ │ │ ├── poller_spank.c │ │ │ ├── poller_support.c │ │ │ ├── poller_wait.c │ │ │ ├── prefix.h │ │ │ ├── socket_accept.c │ │ │ ├── socket_bind.c │ │ │ ├── socket_close.c │ │ │ ├── socket_connect.c │ │ │ ├── socket_ctrl.c │ │ │ ├── socket_kill.c │ │ │ ├── socket_listen.c │ │ │ ├── socket_open.c │ │ │ ├── socket_peeraddr.c │ │ │ ├── socket_rawfd.c │ │ │ ├── socket_recv.c │ │ │ ├── socket_recvfrom.c │ │ │ ├── socket_send.c │ │ │ ├── socket_sendfile.c │ │ │ ├── socket_sendto.c │ │ │ ├── socket_wait.c │ │ │ └── stdfile.c │ │ ├── libc │ │ │ ├── byteof.c │ │ │ ├── dataptr.c │ │ │ ├── free.c │ │ │ ├── malloc.c │ │ │ ├── memcpy.c │ │ │ ├── memmov.c │ │ │ ├── memset.c │ │ │ ├── prefix.h │ │ │ ├── setbyte.c │ │ │ └── strndup.c │ │ ├── lz4 │ │ │ ├── block_compress.c │ │ │ ├── block_decompress.c │ │ │ ├── compress.c │ │ │ ├── compress_file.c │ │ │ ├── compress_stream_close.c │ │ │ ├── compress_stream_open.c │ │ │ ├── compress_stream_read.c │ │ │ ├── compress_stream_write.c │ │ │ ├── decompress.c │ │ │ ├── decompress_file.c │ │ │ ├── decompress_stream_close.c │ │ │ ├── decompress_stream_open.c │ │ │ ├── decompress_stream_read.c │ │ │ ├── decompress_stream_write.c │ │ │ └── prefix.h │ │ ├── os │ │ │ ├── args.c │ │ │ ├── argv.c │ │ │ ├── chdir.c │ │ │ ├── cpdir.c │ │ │ ├── cpfile.c │ │ │ ├── cpuinfo.c │ │ │ ├── curdir.c │ │ │ ├── emptydir.c │ │ │ ├── exists.c │ │ │ ├── filesize.c │ │ │ ├── find.c │ │ │ ├── fscase.c │ │ │ ├── getenv.c │ │ │ ├── getenvs.c │ │ │ ├── getown.c │ │ │ ├── getpid.c │ │ │ ├── getwinsize.c │ │ │ ├── gid.c │ │ │ ├── isdir.c │ │ │ ├── isfile.c │ │ │ ├── islink.c │ │ │ ├── link.c │ │ │ ├── mclock.c │ │ │ ├── meminfo.c │ │ │ ├── mkdir.c │ │ │ ├── mtime.c │ │ │ ├── prefix.h │ │ │ ├── readlink.c │ │ │ ├── rename.c │ │ │ ├── rmdir.c │ │ │ ├── rmfile.c │ │ │ ├── setenv.c │ │ │ ├── signal.c │ │ │ ├── sleep.c │ │ │ ├── strerror.c │ │ │ ├── syserror.c │ │ │ ├── tmpdir.c │ │ │ ├── touch.c │ │ │ └── uid.c │ │ ├── package │ │ │ ├── loadxmi.c │ │ │ └── prefix.h │ │ ├── path │ │ │ ├── absolute.c │ │ │ ├── directory.c │ │ │ ├── is_absolute.c │ │ │ ├── prefix.h │ │ │ ├── relative.c │ │ │ └── translate.c │ │ ├── prefix.h │ │ ├── prefix │ │ │ ├── config.h │ │ │ ├── prefix.h │ │ │ └── version.h │ │ ├── process │ │ │ ├── close.c │ │ │ ├── kill.c │ │ │ ├── open.c │ │ │ ├── openv.c │ │ │ ├── prefix.h │ │ │ └── wait.c │ │ ├── readline │ │ │ ├── add_history.c │ │ │ ├── clear_history.c │ │ │ ├── history_list.c │ │ │ ├── prefix.h │ │ │ └── readline.c │ │ ├── sandbox │ │ │ ├── interactive.c │ │ │ └── prefix.h │ │ ├── semver │ │ │ ├── compare.c │ │ │ ├── parse.c │ │ │ ├── prefix.h │ │ │ ├── satisfies.c │ │ │ ├── select.c │ │ │ └── semver.c │ │ ├── string │ │ │ ├── convert.c │ │ │ ├── endswith.c │ │ │ ├── lastof.c │ │ │ ├── prefix.h │ │ │ ├── split.c │ │ │ ├── startswith.c │ │ │ └── trim.c │ │ ├── thread │ │ │ ├── event_exit.c │ │ │ ├── event_incref.c │ │ │ ├── event_init.c │ │ │ ├── event_post.c │ │ │ ├── event_wait.c │ │ │ ├── mutex_exit.c │ │ │ ├── mutex_incref.c │ │ │ ├── mutex_init.c │ │ │ ├── mutex_lock.c │ │ │ ├── mutex_trylock.c │ │ │ ├── mutex_unlock.c │ │ │ ├── prefix.h │ │ │ ├── queue_clear.c │ │ │ ├── queue_exit.c │ │ │ ├── queue_incref.c │ │ │ ├── queue_init.c │ │ │ ├── queue_pop.c │ │ │ ├── queue_push.c │ │ │ ├── queue_size.c │ │ │ ├── semaphore_exit.c │ │ │ ├── semaphore_incref.c │ │ │ ├── semaphore_init.c │ │ │ ├── semaphore_post.c │ │ │ ├── semaphore_wait.c │ │ │ ├── sharedata_clear.c │ │ │ ├── sharedata_exit.c │ │ │ ├── sharedata_get.c │ │ │ ├── sharedata_incref.c │ │ │ ├── sharedata_init.c │ │ │ ├── sharedata_set.c │ │ │ ├── thread_exit.c │ │ │ ├── thread_init.c │ │ │ ├── thread_resume.c │ │ │ ├── thread_suspend.c │ │ │ └── thread_wait.c │ │ ├── tty │ │ │ ├── prefix.h │ │ │ └── term_mode.c │ │ ├── winos │ │ │ ├── ansi.c │ │ │ ├── ansi.h │ │ │ ├── logical_drives.c │ │ │ ├── prefix.h │ │ │ ├── registry_keys.c │ │ │ ├── registry_query.c │ │ │ ├── registry_values.c │ │ │ └── short_path.c │ │ ├── xmake.c │ │ ├── xmake.config.h.in │ │ ├── xmake.h │ │ ├── xmake.lua │ │ └── xmake.sh │ └── xxhash │ │ └── xxhash │ │ ├── LICENSE │ │ └── xxhash.h ├── xmake.lua ├── xmake.sh └── xpack.lua ├── scripts ├── debian │ ├── README.Debian │ ├── README.source │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── init.d.ex │ ├── manpage.1.ex │ ├── manpage.sgml.ex │ ├── manpage.xml.ex │ ├── menu.ex │ ├── postinst.ex │ ├── postrm.ex │ ├── preinst.ex │ ├── prerm.ex │ ├── rules │ ├── source │ │ └── format │ ├── watch.ex │ ├── xmake-docs.docs │ ├── xmake.cron.d.ex │ ├── xmake.default.ex │ └── xmake.doc-base.EX ├── get.ps1 ├── get.sh ├── makeppa ├── man │ ├── xmake.1 │ └── xrepo.1 ├── msys │ ├── xmake.cmd │ ├── xmake.ps1 │ └── xmake.sh ├── rpmbuild │ ├── 0001-use-static-libsv-and-tbox.patch │ └── xmake.spec ├── srcenv.bat ├── srcenv.profile ├── srcenv.ps1 ├── xrepo.bat ├── xrepo.ps1 └── xrepo.sh ├── tests ├── actions │ ├── config │ │ ├── .gitignore │ │ └── test.lua │ ├── install │ │ ├── .gitignore │ │ ├── src │ │ │ ├── foo.cpp │ │ │ ├── foo.h │ │ │ ├── foo.txt │ │ │ └── main.cpp │ │ ├── test.lua │ │ └── xmake.lua │ ├── package │ │ └── localpkg │ │ │ ├── bar │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ └── xmake.lua │ │ │ ├── libfoo │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ ├── add.cpp │ │ │ │ ├── add.h │ │ │ │ ├── foo.cpp │ │ │ │ ├── foo.h │ │ │ │ ├── sub.cpp │ │ │ │ └── sub.h │ │ │ └── xmake.lua │ │ │ └── test.lua │ └── test │ │ ├── .gitignore │ │ ├── src │ │ ├── compile_1.cpp │ │ ├── compile_2.cpp │ │ ├── run_timeout.cpp │ │ ├── test_1.cpp │ │ ├── test_2.cpp │ │ ├── test_3.cpp │ │ ├── test_4.cpp │ │ ├── test_5.cpp │ │ ├── test_6.cpp │ │ ├── test_7.cpp │ │ ├── test_8.cpp │ │ └── test_9.cpp │ │ ├── test.lua │ │ ├── tests │ │ ├── stub_1.cpp │ │ ├── stub_2.cpp │ │ ├── stub_n1.cpp │ │ └── stub_n2.cpp │ │ └── xmake.lua ├── apis │ ├── add_allowedxxx │ │ ├── .gitignore │ │ ├── src │ │ │ └── main.cpp │ │ └── xmake.lua │ ├── add_configfiles │ │ ├── config.h.in │ │ ├── config2.h.in │ │ ├── hello.man │ │ ├── main.c │ │ ├── main2.c │ │ ├── test.c.in │ │ ├── test.lua │ │ └── xmake.lua │ ├── add_defines │ │ ├── .gitignore │ │ ├── src │ │ │ └── main.cpp │ │ ├── test.lua │ │ └── xmake.lua │ ├── add_deps │ │ ├── inc1 │ │ │ └── stub.h │ │ ├── inc2 │ │ │ └── stub.h │ │ ├── inc3 │ │ │ └── stub.h │ │ ├── inc4 │ │ │ └── stub.h │ │ ├── src │ │ │ ├── interface.c │ │ │ ├── interface.h │ │ │ └── main.c │ │ ├── test.lua │ │ └── xmake.lua │ ├── add_imports │ │ ├── test.lua │ │ └── xmake.lua │ ├── add_xxx │ │ ├── test.lua │ │ └── xmake.lua │ ├── check_xxx │ │ ├── config.h.in │ │ ├── foo.c │ │ ├── main.c │ │ ├── test.lua │ │ └── xmake.lua │ ├── clone_target │ │ ├── src │ │ │ └── main.cpp │ │ ├── test.lua │ │ └── xmake.lua │ ├── custom_scopeapis │ │ ├── .gitignore │ │ ├── src │ │ │ └── main.cpp │ │ └── xmake.lua │ ├── custom_toolchain │ │ ├── src │ │ │ ├── foo.cpp │ │ │ ├── foo.h │ │ │ └── test.cpp │ │ ├── xmake.lua │ │ └── xmake │ │ │ ├── modules │ │ │ ├── core │ │ │ │ └── tools │ │ │ │ │ ├── ar6x.lua │ │ │ │ │ ├── cl6x.lua │ │ │ │ │ └── cl6x │ │ │ │ │ ├── has_flags.lua │ │ │ │ │ └── parse_deps.lua │ │ │ └── detect │ │ │ │ └── tools │ │ │ │ ├── find_ar6x.lua │ │ │ │ └── find_cl6x.lua │ │ │ └── toolchains │ │ │ └── my-c6000 │ │ │ └── xmake.lua │ ├── namespace │ │ ├── basic │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ ├── bar.cpp │ │ │ │ ├── bar.h │ │ │ │ ├── foo.cpp │ │ │ │ ├── foo.h │ │ │ │ └── main.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── includes │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ ├── bar.cpp │ │ │ │ ├── bar.h │ │ │ │ ├── foo.cpp │ │ │ │ ├── foo.h │ │ │ │ ├── main.cpp │ │ │ │ └── xmake.lua │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── inner │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ ├── bar.cpp │ │ │ │ ├── bar.h │ │ │ │ ├── foo.cpp │ │ │ │ ├── foo.h │ │ │ │ └── main.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── nested │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ ├── bar.cpp │ │ │ │ ├── bar.h │ │ │ │ ├── foo.cpp │ │ │ │ ├── foo.h │ │ │ │ └── main.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── option │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ ├── bar.cpp │ │ │ │ ├── bar.h │ │ │ │ ├── foo.cpp │ │ │ │ ├── foo.h │ │ │ │ └── main.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── package │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ ├── bar.cpp │ │ │ │ ├── bar.h │ │ │ │ ├── foo.cpp │ │ │ │ ├── foo.h │ │ │ │ └── main.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── root │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ ├── bar.cpp │ │ │ │ ├── bar.h │ │ │ │ ├── foo.cpp │ │ │ │ ├── foo.h │ │ │ │ └── main.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── rule │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ ├── bar.cpp │ │ │ │ ├── bar.h │ │ │ │ ├── foo.cpp │ │ │ │ ├── foo.h │ │ │ │ └── main.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── task │ │ │ ├── .gitignore │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ └── toolchain │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ ├── bar.cpp │ │ │ ├── bar.h │ │ │ ├── foo.cpp │ │ │ ├── foo.h │ │ │ └── main.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ ├── rules │ │ ├── src │ │ │ ├── empty.stub │ │ │ ├── index.md │ │ │ ├── main.c │ │ │ ├── main2.c │ │ │ ├── man │ │ │ │ ├── man1.in │ │ │ │ ├── man2.in │ │ │ │ └── man3.in │ │ │ └── test.c.in │ │ ├── test.lua │ │ └── xmake.lua │ ├── rules_inject_deps │ │ ├── src │ │ │ ├── main.cpp │ │ │ └── main.cpp2 │ │ ├── test.lua │ │ └── xmake.lua │ ├── rules_order │ │ ├── src │ │ │ ├── main.c │ │ │ ├── test.man │ │ │ └── test.md │ │ ├── test.lua │ │ └── xmake.lua │ ├── rules_override_cxx │ │ ├── src │ │ │ ├── main.xx │ │ │ └── test.cc │ │ ├── test.lua │ │ └── xmake.lua │ ├── set_toolchains │ │ ├── src │ │ │ ├── foo.cpp │ │ │ ├── foo.h │ │ │ └── test.cpp │ │ └── xmake.lua │ ├── target_get_from │ │ ├── .gitignore │ │ ├── src │ │ │ ├── foo.cpp │ │ │ ├── foo.h │ │ │ └── main.cpp │ │ └── xmake.lua │ └── xxx_script │ │ ├── test.lua │ │ └── xmake.lua ├── benchmarks │ ├── async │ │ └── runjobs.lua │ ├── build_targets │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── meson.build │ │ ├── src │ │ │ ├── test_1.cpp │ │ │ ├── test_10.cpp │ │ │ ├── test_11.cpp │ │ │ ├── test_12.cpp │ │ │ ├── test_13.cpp │ │ │ ├── test_14.cpp │ │ │ ├── test_15.cpp │ │ │ ├── test_16.cpp │ │ │ ├── test_17.cpp │ │ │ ├── test_18.cpp │ │ │ ├── test_19.cpp │ │ │ ├── test_2.cpp │ │ │ ├── test_20.cpp │ │ │ ├── test_21.cpp │ │ │ ├── test_22.cpp │ │ │ ├── test_23.cpp │ │ │ ├── test_24.cpp │ │ │ ├── test_25.cpp │ │ │ ├── test_26.cpp │ │ │ ├── test_27.cpp │ │ │ ├── test_28.cpp │ │ │ ├── test_29.cpp │ │ │ ├── test_3.cpp │ │ │ ├── test_30.cpp │ │ │ ├── test_4.cpp │ │ │ ├── test_5.cpp │ │ │ ├── test_6.cpp │ │ │ ├── test_7.cpp │ │ │ ├── test_8.cpp │ │ │ └── test_9.cpp │ │ ├── test.lua │ │ └── xmake.lua │ ├── config_targets │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── meson.build │ │ ├── src │ │ │ └── main.cpp │ │ ├── test.lua │ │ └── xmake.lua │ └── hash.lua ├── cli │ ├── test.lua │ └── utils │ │ └── test.lua ├── modules │ ├── async │ │ ├── run_callback.lua │ │ ├── run_jobgraph.lua │ │ └── run_jobpool.lua │ ├── bloom_filter │ │ └── test.lua │ ├── bytes │ │ └── test.lua │ ├── cache │ │ └── test.lua │ ├── compress │ │ └── test.lua │ ├── devel │ │ └── git │ │ │ └── test.lua │ ├── fwatcher │ │ ├── on_created.lua │ │ ├── on_deleted.lua │ │ ├── on_modified.lua │ │ ├── sched_watchdir.lua │ │ ├── watchdir.lua │ │ └── watchdirs.lua │ ├── graph │ │ └── test.lua │ ├── hash │ │ └── test.lua │ ├── hashset │ │ └── test.lua │ ├── heap │ │ └── test.lua │ ├── hello │ │ └── test.lua │ ├── io │ │ ├── files │ │ │ ├── .gitattributes │ │ │ ├── utf16be-lf-eleof │ │ │ ├── utf16le-crlf-neleof │ │ │ ├── utf8-crlf-neleof │ │ │ ├── utf8-longline-eleof │ │ │ ├── utf8-longline-neleof │ │ │ └── utf8bom-lf-eleof │ │ └── test.lua │ ├── jobgraph │ │ └── test.lua │ ├── json │ │ └── test.lua │ ├── lib │ │ └── detect │ │ │ └── test.lua │ ├── list │ │ └── test.lua │ ├── math │ │ └── test.lua │ ├── os │ │ ├── async_copy.lua │ │ ├── async_scheduler.lua │ │ ├── cpuinfo.lua │ │ ├── meminfo.lua │ │ └── test.lua │ ├── path │ │ └── test.lua │ ├── pipe │ │ ├── echo_client.lua │ │ ├── echo_server.lua │ │ ├── pipe_pair.lua │ │ ├── sched_echo_client.lua │ │ ├── sched_echo_server.lua │ │ └── sched_pipe_pair.lua │ ├── private │ │ └── select_script │ │ │ └── test.lua │ ├── process │ │ ├── process_autoexit.lua │ │ ├── process_killed.lua │ │ ├── sched_process.lua │ │ ├── sched_process_pipe.lua │ │ └── test.lua │ ├── queue │ │ └── test.lua │ ├── scheduler │ │ ├── semaphore.lua │ │ ├── sleep.lua │ │ ├── spinner.lua │ │ ├── test.lua │ │ └── yield.lua │ ├── semver │ │ └── test.lua │ ├── signal │ │ └── sigint.lua │ ├── socket │ │ ├── sched_tcp │ │ │ ├── echo_client.lua │ │ │ ├── echo_server.lua │ │ │ ├── file_client.lua │ │ │ └── file_server.lua │ │ ├── sched_udp │ │ │ ├── echo_client.lua │ │ │ └── echo_server.lua │ │ ├── tcp │ │ │ ├── echo_client.lua │ │ │ ├── echo_server.lua │ │ │ ├── file_client.lua │ │ │ └── file_server.lua │ │ ├── udp │ │ │ ├── echo_client.lua │ │ │ └── echo_server.lua │ │ └── unix_tcp │ │ │ ├── echo_client.lua │ │ │ ├── echo_server.lua │ │ │ ├── file_client.lua │ │ │ └── file_server.lua │ ├── string │ │ ├── lastof_perf.lua │ │ ├── serialize │ │ │ └── test.lua │ │ ├── split_perf.lua │ │ └── test.lua │ ├── table │ │ └── test.lua │ ├── thread │ │ ├── coroutine.lua │ │ ├── event.lua │ │ ├── mutex.lua │ │ ├── queue.lua │ │ ├── semaphore.lua │ │ ├── sharedata.lua │ │ └── sleep.lua │ ├── tty │ │ ├── cursor_control.lua │ │ ├── live_dashboard.lua │ │ ├── quick_example.lua │ │ └── test.lua │ └── xml │ │ └── test.lua ├── plugins │ ├── create │ │ └── test.lua │ ├── macro │ │ ├── .gitignore │ │ ├── src │ │ │ └── main.cpp │ │ ├── test.lua │ │ └── xmake.lua │ ├── pack │ │ ├── console │ │ │ ├── .gitignore │ │ │ ├── LICENSE.md │ │ │ ├── include │ │ │ │ ├── foo │ │ │ │ │ └── foo.h │ │ │ │ └── test.h │ │ │ ├── src │ │ │ │ ├── assets │ │ │ │ │ ├── file1.txt │ │ │ │ │ ├── file2.txt │ │ │ │ │ ├── img1.png │ │ │ │ │ ├── img2.png │ │ │ │ │ ├── xmake.ico │ │ │ │ │ └── xmake.png │ │ │ │ ├── main.cpp │ │ │ │ └── xmake.rc │ │ │ └── xmake.lua │ │ ├── macapp │ │ │ ├── src │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── icon_128x128.png │ │ │ │ │ │ ├── icon_128x128@2x.png │ │ │ │ │ │ ├── icon_16x16.png │ │ │ │ │ │ ├── icon_16x16@2x.png │ │ │ │ │ │ ├── icon_256x256.png │ │ │ │ │ │ ├── icon_256x256@2x.png │ │ │ │ │ │ ├── icon_32x32.png │ │ │ │ │ │ ├── icon_32x32@2x.png │ │ │ │ │ │ ├── icon_512x512.png │ │ │ │ │ │ └── icon_512x512@2x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ ├── ViewController.h │ │ │ │ ├── ViewController.m │ │ │ │ ├── assets │ │ │ │ │ └── xmake.ico │ │ │ │ └── main.m │ │ │ └── xmake.lua │ │ └── qtapp │ │ │ ├── src │ │ │ ├── assets │ │ │ │ ├── xmake.ico │ │ │ │ └── xmake.png │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ └── mainwindow.ui │ │ │ └── xmake.lua │ └── project │ │ └── test.lua ├── projects │ ├── asm │ │ ├── fasm │ │ │ ├── src │ │ │ │ └── main.S │ │ │ └── xmake.lua │ │ ├── gas │ │ │ ├── src │ │ │ │ └── main.S │ │ │ └── xmake.lua │ │ ├── masm32 │ │ │ ├── src │ │ │ │ ├── generic.asm │ │ │ │ ├── mainicon.ico │ │ │ │ └── rsrc.rc │ │ │ └── xmake.lua │ │ ├── nasm │ │ │ ├── src │ │ │ │ └── main.S │ │ │ └── xmake.lua │ │ └── yasm │ │ │ ├── src │ │ │ ├── main.S │ │ │ ├── main_elf.S │ │ │ └── stub.c │ │ │ └── xmake.lua │ ├── c++ │ │ ├── capnproto │ │ │ ├── proto │ │ │ │ └── message.capnp │ │ │ ├── src │ │ │ │ └── main.cc │ │ │ └── xmake.lua │ │ ├── console │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── console_zig_cxx │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ └── xmake.lua │ │ ├── doctest │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ ├── foo.cpp │ │ │ │ └── main.cpp │ │ │ ├── tests │ │ │ │ ├── test_1.cpp │ │ │ │ └── test_2.cpp │ │ │ └── xmake.lua │ │ ├── linkorders │ │ │ ├── src │ │ │ │ ├── foo.cpp │ │ │ │ ├── foo.h │ │ │ │ └── main.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── manifest │ │ │ ├── src │ │ │ │ ├── main.cpp │ │ │ │ └── main.manifest │ │ │ └── xmake.lua │ │ ├── modules │ │ │ ├── add_move_remove_module │ │ │ │ ├── src │ │ │ │ │ └── foo.mpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── aliased_headerunit │ │ │ │ ├── src │ │ │ │ │ ├── foo │ │ │ │ │ │ └── hello.mpp │ │ │ │ │ ├── header.hpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── circular_dependency │ │ │ │ ├── src │ │ │ │ │ ├── hello.mpp │ │ │ │ │ ├── hello2.mpp │ │ │ │ │ ├── hello3.mpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── class │ │ │ │ ├── src │ │ │ │ │ ├── hello.mpp │ │ │ │ │ ├── hello_impl.cpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── class_cmake │ │ │ │ ├── src │ │ │ │ │ ├── hello.mpp │ │ │ │ │ ├── hello_impl.cpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── cpp_with_moduledeps │ │ │ │ ├── src │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── mod.cpp │ │ │ │ │ └── mod.mpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── culling │ │ │ │ ├── src │ │ │ │ │ └── hello.mpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── culling2 │ │ │ │ ├── src │ │ │ │ │ └── hello.mpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── culling3 │ │ │ │ ├── src │ │ │ │ │ └── hello.mpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── dependence │ │ │ │ ├── src │ │ │ │ │ ├── hello.mpp │ │ │ │ │ ├── hello_impl.cpp │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── mod.mpp │ │ │ │ │ └── mod_impl.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── dependence2 │ │ │ │ ├── src │ │ │ │ │ ├── bar.mpp │ │ │ │ │ ├── cat.mpp │ │ │ │ │ ├── foo.mpp │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── zoo.mpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── dependency_flag_update │ │ │ │ ├── src │ │ │ │ │ ├── bar.mpp │ │ │ │ │ ├── foo.mpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── dependency_flag_update2 │ │ │ │ ├── src │ │ │ │ │ ├── bar.mpp │ │ │ │ │ ├── foo.mpp │ │ │ │ │ ├── foobar.mpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── duplicate_name_detection │ │ │ │ ├── src │ │ │ │ │ ├── bar.mpp │ │ │ │ │ ├── foo.mpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── headerunits_person │ │ │ │ ├── src │ │ │ │ │ ├── Person.mpp │ │ │ │ │ └── test.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── hello with spaces │ │ │ │ ├── src │ │ │ │ │ ├── hello.mpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── hello │ │ │ │ ├── src │ │ │ │ │ ├── hello.mpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── hello_mpp │ │ │ │ ├── src │ │ │ │ │ ├── hello.mpp │ │ │ │ │ └── main.mpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── hello_with_pch │ │ │ │ ├── src │ │ │ │ │ ├── hello.mpp │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── test.h │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── hide_dependency_flags │ │ │ │ ├── src │ │ │ │ │ ├── bar.mpp │ │ │ │ │ ├── cat.mpp │ │ │ │ │ ├── foo.mpp │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── zoo.mpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── ifdef_module │ │ │ │ ├── src │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── impl_unit │ │ │ │ ├── src │ │ │ │ │ ├── hello.mpp │ │ │ │ │ ├── hello_impl.cpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── include-dirs │ │ │ │ ├── include │ │ │ │ │ └── foo.h │ │ │ │ ├── src │ │ │ │ │ ├── hello.mpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── inline_and_template │ │ │ │ ├── src │ │ │ │ │ ├── foo.mpp │ │ │ │ │ ├── foo_impl.cpp │ │ │ │ │ ├── hello.mpp │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── say.mpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── install_with_false_default │ │ │ │ ├── src │ │ │ │ │ ├── foo.mpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── internal_partition │ │ │ │ ├── src │ │ │ │ │ ├── hello.mpp │ │ │ │ │ ├── hello_internal.mpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── moduleonly │ │ │ │ ├── src │ │ │ │ │ └── mod.mpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── moduleonly_private_dep │ │ │ │ ├── src │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── modA.mpp │ │ │ │ │ ├── modB.cpp │ │ │ │ │ └── modB.mpp │ │ │ │ └── xmake.lua │ │ │ ├── multiple_runtimes │ │ │ │ ├── src │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── namespace │ │ │ │ ├── src │ │ │ │ │ ├── hello.mpp │ │ │ │ │ ├── hello_impl.cpp │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── mod.mpp │ │ │ │ │ └── mod_impl.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── namespace2 │ │ │ │ ├── src │ │ │ │ │ ├── hello.mpp │ │ │ │ │ ├── hello_impl.cpp │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── mod.mpp │ │ │ │ │ └── mod_impl.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── packages-subtarget │ │ │ │ ├── my-repo │ │ │ │ │ └── packages │ │ │ │ │ │ ├── b │ │ │ │ │ │ ├── bar │ │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ │ ├── bar.cpp │ │ │ │ │ │ │ │ ├── bar.mpp │ │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ │ └── a.hpp │ │ │ │ │ │ │ │ └── xmake.lua │ │ │ │ │ │ │ └── xmake.lua │ │ │ │ │ │ └── bar2 │ │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── bar.mpp │ │ │ │ │ │ │ └── xmake.lua │ │ │ │ │ │ │ └── xmake.lua │ │ │ │ │ │ └── f │ │ │ │ │ │ └── foo │ │ │ │ │ │ ├── src │ │ │ │ │ │ ├── foo.cpp │ │ │ │ │ │ ├── foo.mpp │ │ │ │ │ │ └── xmake.lua │ │ │ │ │ │ └── xmake.lua │ │ │ │ ├── src │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── mod.mpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── packages │ │ │ │ ├── my-repo │ │ │ │ │ └── packages │ │ │ │ │ │ ├── b │ │ │ │ │ │ ├── bar │ │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ │ ├── bar.cpp │ │ │ │ │ │ │ │ ├── bar.mpp │ │ │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ │ │ └── a.hpp │ │ │ │ │ │ │ │ └── xmake.lua │ │ │ │ │ │ │ └── xmake.lua │ │ │ │ │ │ └── bar2 │ │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── bar.mpp │ │ │ │ │ │ │ └── xmake.lua │ │ │ │ │ │ │ └── xmake.lua │ │ │ │ │ │ └── f │ │ │ │ │ │ └── foo │ │ │ │ │ │ ├── src │ │ │ │ │ │ ├── foo.cpp │ │ │ │ │ │ ├── foo.mpp │ │ │ │ │ │ └── xmake.lua │ │ │ │ │ │ └── xmake.lua │ │ │ │ ├── src │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── partitions │ │ │ │ ├── src │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── math.math1.mpp │ │ │ │ │ ├── math.math2.mpp │ │ │ │ │ └── math.mpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── partitions_implunit │ │ │ │ ├── src │ │ │ │ │ ├── foo.cpp │ │ │ │ │ ├── foo.mpp │ │ │ │ │ ├── foo_impl.mpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── partitions_implunit2 │ │ │ │ ├── src │ │ │ │ │ ├── foo.mpp │ │ │ │ │ ├── foo_impl.mpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── phony │ │ │ │ ├── src │ │ │ │ │ ├── hello.cpp │ │ │ │ │ ├── hello.mpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── phony2 │ │ │ │ ├── include │ │ │ │ │ └── foo.h │ │ │ │ ├── src │ │ │ │ │ ├── hello.cpp │ │ │ │ │ ├── hello.mpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── private_module │ │ │ │ ├── src │ │ │ │ │ ├── dep1.mpp │ │ │ │ │ ├── dep2.mpp │ │ │ │ │ ├── use.cpp │ │ │ │ │ └── use.mpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── staticlib │ │ │ │ ├── src │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── mod.cpp │ │ │ │ │ └── mod.mpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── staticlib2 │ │ │ │ ├── src │ │ │ │ │ ├── bar.cpp │ │ │ │ │ ├── bar.mpp │ │ │ │ │ ├── foo.cpp │ │ │ │ │ ├── foo.mpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── stdmodules │ │ │ │ ├── src │ │ │ │ │ ├── my_module.cpp │ │ │ │ │ └── my_module.mpp │ │ │ │ ├── test.lua │ │ │ │ ├── test │ │ │ │ │ └── test.cpp │ │ │ │ └── xmake.lua │ │ │ ├── stdmodules_cpp_only │ │ │ │ ├── .gitignore │ │ │ │ ├── src │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── stdmodules_deps │ │ │ │ ├── src │ │ │ │ │ ├── bar.mpp │ │ │ │ │ ├── foo.cpp │ │ │ │ │ ├── foo.mpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── stdmodules_multiple_targets │ │ │ │ ├── src │ │ │ │ │ ├── my_module.cpp │ │ │ │ │ └── my_module.mpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── stl_headerunit │ │ │ │ ├── src │ │ │ │ │ ├── hello.mpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── stl_headerunit_cpp_only │ │ │ │ ├── .gitignore │ │ │ │ ├── src │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── submodules │ │ │ │ ├── src │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── math.math1.mpp │ │ │ │ │ ├── math.math2.mpp │ │ │ │ │ └── math.mpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── submodules2 │ │ │ │ ├── src │ │ │ │ │ ├── main.cpp │ │ │ │ │ ├── main_module.mpp │ │ │ │ │ ├── module1.cpp │ │ │ │ │ ├── module1.mpp │ │ │ │ │ ├── module2.cpp │ │ │ │ │ └── module2.mpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── test_base.lua │ │ │ ├── test_cmake.lua │ │ │ ├── test_culling.lua │ │ │ ├── test_dependency_scanner.lua │ │ │ ├── test_duplicate_modules.lua │ │ │ ├── test_headerunits.lua │ │ │ ├── test_partitions.lua │ │ │ ├── test_stdmodules.lua │ │ │ ├── test_xmake_test.lua │ │ │ ├── user_headerunit │ │ │ │ ├── src │ │ │ │ │ ├── header.hpp │ │ │ │ │ ├── hello.mpp │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── user_headerunit2 │ │ │ │ ├── a │ │ │ │ │ ├── a.mpp │ │ │ │ │ ├── c.hpp │ │ │ │ │ ├── d.hpp │ │ │ │ │ └── xmake.lua │ │ │ │ ├── b │ │ │ │ │ ├── b.mpp │ │ │ │ │ └── xmake.lua │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── xmake_tests1 │ │ │ │ ├── src │ │ │ │ │ ├── foo.cppm │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ └── xmake_tests2 │ │ │ │ ├── src │ │ │ │ ├── foo.cppm │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ ├── package_linkgroups │ │ │ ├── 3rd │ │ │ │ ├── dpdk │ │ │ │ │ ├── src │ │ │ │ │ │ ├── add.cc │ │ │ │ │ │ └── add.h │ │ │ │ │ └── xmake.lua │ │ │ │ └── spdk │ │ │ │ │ ├── src │ │ │ │ │ ├── mul.cc │ │ │ │ │ └── mul.h │ │ │ │ │ └── xmake.lua │ │ │ ├── src │ │ │ │ └── main.cc │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── precompiled_header │ │ │ ├── src │ │ │ │ ├── header.h │ │ │ │ ├── header2.h │ │ │ │ ├── main.cpp │ │ │ │ ├── test.c │ │ │ │ ├── test.cpp │ │ │ │ ├── test2.cpp │ │ │ │ ├── test4.cpp │ │ │ │ ├── test5.cpp │ │ │ │ ├── test6.cpp │ │ │ │ ├── test7.cpp │ │ │ │ └── test8.cpp │ │ │ ├── test.lua │ │ │ ├── test3.cpp │ │ │ └── xmake.lua │ │ ├── protobuf │ │ │ ├── src │ │ │ │ ├── main.cpp │ │ │ │ ├── subdir │ │ │ │ │ └── test2.proto │ │ │ │ └── test.proto │ │ │ └── xmake.lua │ │ ├── protobuf_grpc_cpp_plugin │ │ │ ├── src │ │ │ │ ├── main.cpp │ │ │ │ ├── subdir │ │ │ │ │ └── test2.proto │ │ │ │ └── test.proto │ │ │ └── xmake.lua │ │ ├── shared_library │ │ │ ├── src │ │ │ │ ├── foo.cpp │ │ │ │ ├── foo.h │ │ │ │ └── main.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── shared_library_export_all │ │ │ ├── src │ │ │ │ ├── bar.cpp │ │ │ │ ├── bar.h │ │ │ │ ├── foo.cpp │ │ │ │ ├── foo.h │ │ │ │ └── main.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── shared_library_with_soname │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ ├── foo.cpp │ │ │ │ ├── foo.h │ │ │ │ └── main.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── snippet_runtimes │ │ │ ├── my-repo │ │ │ │ └── packages │ │ │ │ │ └── b │ │ │ │ │ └── bar │ │ │ │ │ ├── src │ │ │ │ │ ├── include │ │ │ │ │ │ └── bar.hpp │ │ │ │ │ ├── src │ │ │ │ │ │ └── bar.cpp │ │ │ │ │ └── xmake.lua │ │ │ │ │ └── xmake.lua │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── static_library │ │ │ ├── src │ │ │ │ ├── foo.cpp │ │ │ │ ├── foo.h │ │ │ │ └── main.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── test(brackets) │ │ │ ├── .gitignore │ │ │ ├── inc(brackets) │ │ │ │ └── test.h │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ └── unity_build │ │ │ ├── src │ │ │ ├── bar │ │ │ │ ├── test4.cpp │ │ │ │ ├── test5.cpp │ │ │ │ └── test6.cpp │ │ │ ├── foo │ │ │ │ ├── test.cpp │ │ │ │ └── test2.cpp │ │ │ ├── header.h │ │ │ ├── header2.h │ │ │ ├── main.cpp │ │ │ ├── test.c │ │ │ ├── test7.cpp │ │ │ └── test8.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ ├── c │ │ ├── Unicode 测试 │ │ │ ├── test.lua │ │ │ ├── xmake.lua │ │ │ ├── 头文件✨ │ │ │ │ └── 标头🎟.h │ │ │ └── 源文件🎆 │ │ │ │ ├── 中文.c │ │ │ │ └── 😘.c │ │ ├── asn1c │ │ │ ├── src │ │ │ │ ├── main.c │ │ │ │ └── rectangle.asn1 │ │ │ └── xmake.lua │ │ ├── console │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── cosmocc │ │ │ ├── console │ │ │ │ ├── src │ │ │ │ │ └── main.c │ │ │ │ └── xmake.lua │ │ │ └── static_library │ │ │ │ ├── src │ │ │ │ ├── foo.c │ │ │ │ ├── foo.h │ │ │ │ └── main.c │ │ │ │ └── xmake.lua │ │ ├── embeddirs │ │ │ ├── .gitignore │ │ │ ├── assets │ │ │ │ └── message.txt │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── xmake.lua │ │ ├── headeronly │ │ │ ├── src │ │ │ │ └── foo.h │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── library_with_cmakelists │ │ │ ├── .gitignore │ │ │ ├── foo │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── src │ │ │ │ │ ├── foo.c │ │ │ │ │ └── foo.h │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── linker_scripts │ │ │ ├── src │ │ │ │ ├── foo.c │ │ │ │ ├── foo.def │ │ │ │ ├── foo.map │ │ │ │ ├── main.c │ │ │ │ └── main.lds │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── precompiled_header │ │ │ ├── src │ │ │ │ ├── header.h │ │ │ │ ├── main.c │ │ │ │ ├── test.c │ │ │ │ ├── test.cpp │ │ │ │ ├── test2.c │ │ │ │ ├── test3.c │ │ │ │ ├── test4.c │ │ │ │ ├── test5.c │ │ │ │ ├── test6.c │ │ │ │ ├── test7.c │ │ │ │ └── test8.c │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── protobuf │ │ │ ├── src │ │ │ │ ├── main.c │ │ │ │ ├── subdir │ │ │ │ │ └── test2.proto │ │ │ │ └── test.proto │ │ │ └── xmake.lua │ │ ├── shared_library │ │ │ ├── src │ │ │ │ ├── foo.c │ │ │ │ ├── foo.h │ │ │ │ └── main.c │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── shared_library_export_all │ │ │ ├── src │ │ │ │ ├── bar.cpp │ │ │ │ ├── foo.c │ │ │ │ ├── foo.h │ │ │ │ └── main.c │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── shared_library_export_list │ │ │ ├── src │ │ │ │ ├── foo.c │ │ │ │ ├── foo.export.txt │ │ │ │ ├── foo.h │ │ │ │ └── main.c │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── static library with spaces │ │ │ ├── i n c │ │ │ │ ├── interface.h │ │ │ │ └── stdafx.h │ │ │ ├── s r c │ │ │ │ ├── interface.c │ │ │ │ └── test.c │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── static_library │ │ │ ├── src │ │ │ │ ├── foo.c │ │ │ │ ├── foo.h │ │ │ │ └── main.c │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ └── unity_build │ │ │ ├── src │ │ │ ├── bar │ │ │ │ ├── test4.c │ │ │ │ └── test5.c │ │ │ ├── foo │ │ │ │ ├── test1.c │ │ │ │ └── test2.c │ │ │ ├── header.h │ │ │ ├── main.c │ │ │ ├── test.cpp │ │ │ ├── test2.c │ │ │ ├── test6.c │ │ │ ├── test7.c │ │ │ └── test8.c │ │ │ ├── test.lua │ │ │ └── xmake.lua │ ├── cppfront │ │ └── console │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ ├── main.cpp2 │ │ │ └── println.h2 │ │ │ └── xmake.lua │ ├── cuda │ │ ├── console │ │ │ ├── inc │ │ │ │ ├── cuda_drvapi_dynlink.c │ │ │ │ ├── drvapi_error_string.h │ │ │ │ ├── dynlink │ │ │ │ │ ├── cuda_drvapi_dynlink.h │ │ │ │ │ ├── cuda_drvapi_dynlink_cuda.h │ │ │ │ │ ├── cuda_drvapi_dynlink_d3d.h │ │ │ │ │ └── cuda_drvapi_dynlink_gl.h │ │ │ │ ├── dynlink_d3d10.h │ │ │ │ ├── dynlink_d3d11.h │ │ │ │ ├── exception.h │ │ │ │ ├── helper_cuda.h │ │ │ │ ├── helper_cuda_drvapi.h │ │ │ │ ├── helper_cuda_gl.h │ │ │ │ ├── helper_cusolver.h │ │ │ │ ├── helper_functions.h │ │ │ │ ├── helper_gl.h │ │ │ │ ├── helper_image.h │ │ │ │ ├── helper_math.h │ │ │ │ ├── helper_string.h │ │ │ │ ├── helper_timer.h │ │ │ │ ├── multithreading.h │ │ │ │ ├── nvMath.h │ │ │ │ ├── nvMatrix.h │ │ │ │ ├── nvQuaternion.h │ │ │ │ ├── nvShaderUtils.h │ │ │ │ ├── nvVector.h │ │ │ │ ├── nvrtc_helper.h │ │ │ │ ├── param.h │ │ │ │ ├── paramgl.h │ │ │ │ ├── rendercheck_d3d10.h │ │ │ │ ├── rendercheck_d3d11.h │ │ │ │ ├── rendercheck_d3d9.h │ │ │ │ ├── rendercheck_gl.h │ │ │ │ ├── rendercheck_gles.h │ │ │ │ └── timer.h │ │ │ ├── src │ │ │ │ └── main.cu │ │ │ └── xmake.lua │ │ ├── console_2 │ │ │ ├── inc │ │ │ │ └── lib.cuh │ │ │ ├── src │ │ │ │ ├── lib.cu │ │ │ │ └── main.cu │ │ │ └── xmake.lua │ │ ├── shared │ │ │ ├── inc │ │ │ │ └── lib.cuh │ │ │ ├── src │ │ │ │ ├── lib.cu │ │ │ │ └── main.cu │ │ │ └── xmake.lua │ │ └── static │ │ │ ├── inc │ │ │ └── lib.cuh │ │ │ ├── src │ │ │ ├── lib.cu │ │ │ └── main.cu │ │ │ └── xmake.lua │ ├── dlang │ │ ├── console │ │ │ ├── src │ │ │ │ └── main.d │ │ │ └── xmake.lua │ │ ├── console_with_pkgs │ │ │ ├── src │ │ │ │ └── main.d │ │ │ └── xmake.lua │ │ ├── dub_package │ │ │ ├── src │ │ │ │ └── main.d │ │ │ └── xmake.lua │ │ ├── shared_library │ │ │ ├── src │ │ │ │ ├── interfaces.d │ │ │ │ └── main.d │ │ │ └── xmake.lua │ │ └── static_library │ │ │ ├── src │ │ │ ├── interfaces.d │ │ │ └── main.d │ │ │ └── xmake.lua │ ├── embed │ │ ├── c51 │ │ │ └── hello │ │ │ │ ├── src │ │ │ │ └── main.c │ │ │ │ └── xmake.lua │ │ ├── gnu-rm │ │ │ └── hello │ │ │ │ ├── src │ │ │ │ ├── foo │ │ │ │ │ └── foo.c │ │ │ │ ├── gcc_arm.ld │ │ │ │ ├── lib │ │ │ │ │ └── cmsis │ │ │ │ │ │ ├── ARMCM3.h │ │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ │ ├── cmsis_gcc.h │ │ │ │ │ │ ├── cmsis_version.h │ │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ │ ├── mpu_armv7.h │ │ │ │ │ │ └── system_ARMCM3.h │ │ │ │ ├── main.c │ │ │ │ ├── startup_ARMCM3.S │ │ │ │ └── system_ARMCM3.c │ │ │ │ └── xmake.lua │ │ ├── iverilog │ │ │ ├── hello │ │ │ │ ├── src │ │ │ │ │ └── main.v │ │ │ │ └── xmake.lua │ │ │ └── hello_vcd │ │ │ │ ├── src │ │ │ │ └── main.v │ │ │ │ └── xmake.lua │ │ ├── mdk │ │ │ └── hello │ │ │ │ ├── src │ │ │ │ ├── foo │ │ │ │ │ └── foo.c │ │ │ │ ├── lib │ │ │ │ │ └── cmsis │ │ │ │ │ │ ├── ARMCM3.h │ │ │ │ │ │ ├── cmsis_armcc.h │ │ │ │ │ │ ├── cmsis_armclang.h │ │ │ │ │ │ ├── cmsis_compiler.h │ │ │ │ │ │ ├── cmsis_version.h │ │ │ │ │ │ ├── core_cm3.h │ │ │ │ │ │ ├── mpu_armv7.h │ │ │ │ │ │ └── system_ARMCM3.h │ │ │ │ ├── main.c │ │ │ │ ├── startup_ARMCM3.s │ │ │ │ └── system_ARMCM3.c │ │ │ │ └── xmake.lua │ │ └── verilator │ │ │ ├── hello │ │ │ ├── src │ │ │ │ ├── main.v │ │ │ │ └── sim_main.cpp │ │ │ └── xmake.lua │ │ │ ├── hello_vcd │ │ │ ├── src │ │ │ │ ├── main.v │ │ │ │ └── sim_main.cpp │ │ │ └── xmake.lua │ │ │ ├── shared │ │ │ ├── src │ │ │ │ ├── main.v │ │ │ │ └── sim_main.cpp │ │ │ └── xmake.lua │ │ │ └── static │ │ │ ├── src │ │ │ ├── main.v │ │ │ └── sim_main.cpp │ │ │ └── xmake.lua │ ├── fortran │ │ ├── console │ │ │ ├── src │ │ │ │ └── main.f90 │ │ │ └── xmake.lua │ │ ├── shared_library │ │ │ ├── src │ │ │ │ ├── main.f90 │ │ │ │ └── test.f90 │ │ │ └── xmake.lua │ │ └── static_library │ │ │ ├── src │ │ │ ├── main.f90 │ │ │ └── test.f90 │ │ │ └── xmake.lua │ ├── go │ │ ├── console │ │ │ ├── src │ │ │ │ └── main.go │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ └── static_library │ │ │ ├── src │ │ │ ├── main.go │ │ │ ├── module │ │ │ │ ├── add.go │ │ │ │ └── sub.go │ │ │ └── test.go │ │ │ ├── test.lua │ │ │ └── xmake.lua │ ├── hybrid │ │ └── static_library │ │ │ ├── src │ │ │ ├── main.cpp │ │ │ ├── main2.cpp │ │ │ ├── test.h │ │ │ ├── test1.c │ │ │ ├── test2.m │ │ │ ├── test3.mm │ │ │ ├── test4.cpp │ │ │ └── test5.d │ │ │ ├── test.lua │ │ │ └── xmake.lua │ ├── kotlin-native │ │ ├── console │ │ │ ├── src │ │ │ │ └── main.kt │ │ │ └── xmake.lua │ │ ├── package │ │ │ ├── cli-parser │ │ │ │ ├── src │ │ │ │ │ └── main.kt │ │ │ │ └── xmake.lua │ │ │ └── json │ │ │ │ ├── src │ │ │ │ └── main.kt │ │ │ │ └── xmake.lua │ │ ├── shared_library │ │ │ ├── src │ │ │ │ ├── foo.kt │ │ │ │ └── main.c │ │ │ └── xmake.lua │ │ └── static_library │ │ │ ├── src │ │ │ ├── foo.kt │ │ │ └── main.c │ │ │ └── xmake.lua │ ├── lex_yacc │ │ ├── src │ │ │ ├── calc.l │ │ │ ├── calc.y │ │ │ └── test.c │ │ └── xmake.lua │ ├── linux │ │ ├── bpf │ │ │ └── minimal │ │ │ │ ├── src │ │ │ │ ├── minimal.bpf.c │ │ │ │ └── minimal.c │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ └── driver │ │ │ ├── hello │ │ │ ├── src │ │ │ │ ├── add.c │ │ │ │ ├── add.h │ │ │ │ └── hello.c │ │ │ └── xmake.lua │ │ │ ├── hello_custom │ │ │ ├── src │ │ │ │ ├── add.c │ │ │ │ ├── add.h │ │ │ │ └── hello.c │ │ │ └── xmake.lua │ │ │ └── hello_makefile │ │ │ ├── Makefile │ │ │ └── src │ │ │ ├── add.c │ │ │ ├── add.h │ │ │ └── hello.c │ ├── nim │ │ ├── console │ │ │ ├── src │ │ │ │ ├── main │ │ │ │ └── main.nim │ │ │ └── xmake.lua │ │ ├── console_with_c │ │ │ ├── src │ │ │ │ ├── foo.c │ │ │ │ └── main.nim │ │ │ └── xmake.lua │ │ ├── native_package │ │ │ ├── src │ │ │ │ └── main.nim │ │ │ └── xmake.lua │ │ ├── nimble_package │ │ │ ├── src │ │ │ │ └── main.nim │ │ │ └── xmake.lua │ │ ├── shared_library │ │ │ ├── src │ │ │ │ ├── foo.nim │ │ │ │ └── main.nim │ │ │ └── xmake.lua │ │ └── static_library │ │ │ ├── src │ │ │ ├── foo.nim │ │ │ └── main.nim │ │ │ └── xmake.lua │ ├── objc++ │ │ ├── console │ │ │ ├── src │ │ │ │ └── main.mm │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── modulemap │ │ │ ├── src │ │ │ │ ├── hello.h │ │ │ │ ├── hello.m │ │ │ │ ├── main.mm │ │ │ │ └── module.modulemap │ │ │ └── xmake.lua │ │ └── precompiled_header │ │ │ ├── src │ │ │ ├── header.h │ │ │ ├── header2.h │ │ │ ├── main.mm │ │ │ ├── test.c │ │ │ ├── test.mm │ │ │ ├── test2.mm │ │ │ ├── test4.mm │ │ │ ├── test5.mm │ │ │ ├── test6.mm │ │ │ ├── test7.mm │ │ │ └── test8.mm │ │ │ ├── test.lua │ │ │ ├── test3.mm │ │ │ └── xmake.lua │ ├── objc │ │ ├── bundle │ │ │ ├── src │ │ │ │ ├── Info.plist │ │ │ │ ├── test.h │ │ │ │ └── test.m │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── console │ │ │ ├── src │ │ │ │ └── main.m │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── framework │ │ │ ├── src │ │ │ │ ├── Info.plist │ │ │ │ ├── main.m │ │ │ │ ├── test.h │ │ │ │ └── test.m │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── iosapp │ │ │ ├── src │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ ├── SceneDelegate.h │ │ │ │ ├── SceneDelegate.m │ │ │ │ ├── ViewController.h │ │ │ │ ├── ViewController.m │ │ │ │ └── main.m │ │ │ └── xmake.lua │ │ ├── iosapp_with_framework │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ │ └── Main.storyboard │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── SceneDelegate.h │ │ │ │ │ ├── SceneDelegate.m │ │ │ │ │ ├── ViewController.h │ │ │ │ │ ├── ViewController.m │ │ │ │ │ └── main.m │ │ │ │ └── framework │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── test.h │ │ │ │ │ └── test.m │ │ │ └── xmake.lua │ │ ├── macapp │ │ │ ├── src │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ ├── ViewController.h │ │ │ │ ├── ViewController.m │ │ │ │ ├── main.m │ │ │ │ └── test.entitlements │ │ │ └── xmake.lua │ │ ├── macapp_with_framework │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ └── Main.storyboard │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ViewController.h │ │ │ │ │ ├── ViewController.m │ │ │ │ │ └── main.m │ │ │ │ └── framework │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── test.h │ │ │ │ │ └── test.m │ │ │ └── xmake.lua │ │ ├── macapp_with_shared │ │ │ ├── src │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ ├── ViewController.h │ │ │ │ ├── ViewController.m │ │ │ │ ├── main.m │ │ │ │ ├── test.c │ │ │ │ ├── test.entitlements │ │ │ │ └── test.h │ │ │ └── xmake.lua │ │ ├── metal_app │ │ │ ├── .gitignore │ │ │ ├── Application │ │ │ │ ├── AAPLAppDelegate.h │ │ │ │ ├── AAPLAppDelegate.m │ │ │ │ ├── AAPLViewController.h │ │ │ │ ├── AAPLViewController.m │ │ │ │ ├── iOS │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ │ └── Main.storyboard │ │ │ │ │ └── Info.plist │ │ │ │ ├── macOS │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ └── Main.storyboard │ │ │ │ │ └── Info.plist │ │ │ │ ├── main.m │ │ │ │ └── tvOS │ │ │ │ │ ├── Base.lproj │ │ │ │ │ └── Main.storyboard │ │ │ │ │ └── Info.plist │ │ │ ├── Configuration │ │ │ │ └── SampleCode.xcconfig │ │ │ ├── HelloTriangle.xcodeproj │ │ │ │ ├── .xcodesamplecode.plist │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── LICENSE │ │ │ │ └── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── Renderer │ │ │ │ ├── AAPLRenderer.h │ │ │ │ ├── AAPLRenderer.m │ │ │ │ ├── AAPLShaderTypes.h │ │ │ │ └── AAPLShaders.metal │ │ │ └── xmake.lua │ │ └── modulemap │ │ │ ├── src │ │ │ ├── hello.h │ │ │ ├── hello.m │ │ │ ├── main.m │ │ │ └── module.modulemap │ │ │ └── xmake.lua │ ├── openmp │ │ ├── hello │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── xmake.lua │ │ └── loop │ │ │ ├── src │ │ │ └── main.cpp │ │ │ └── xmake.lua │ ├── other │ │ ├── autogen │ │ │ ├── autogen_binary_module │ │ │ │ ├── .gitignore │ │ │ │ ├── modules │ │ │ │ │ └── autogen │ │ │ │ │ │ └── foo │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── src │ │ │ │ │ │ └── main.cpp │ │ │ │ │ │ └── xmake.lua │ │ │ │ ├── src │ │ │ │ │ ├── data.in │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── autogen_code │ │ │ │ ├── .gitignore │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ ├── autogen_codedep │ │ │ │ ├── .gitignore │ │ │ │ ├── src │ │ │ │ │ ├── autogen.cpp │ │ │ │ │ ├── data.in │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ └── autogen_shared_module │ │ │ │ ├── .gitignore │ │ │ │ ├── modules │ │ │ │ └── autogen │ │ │ │ │ └── foo │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── src │ │ │ │ │ └── main.cpp │ │ │ │ │ └── xmake.lua │ │ │ │ ├── src │ │ │ │ ├── data.in │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ ├── bin2c │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ ├── data.bin │ │ │ │ ├── main.c │ │ │ │ └── xmake.ico │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── bin2obj │ │ │ ├── src │ │ │ │ ├── data.bin │ │ │ │ ├── main.c │ │ │ │ └── xmake.ico │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── build_deps │ │ │ ├── src │ │ │ │ ├── dep1.c │ │ │ │ ├── dep2.c │ │ │ │ ├── dep3.c │ │ │ │ ├── dep4.c │ │ │ │ ├── dep5.c │ │ │ │ ├── interface.h │ │ │ │ ├── test1.c │ │ │ │ ├── test2.c │ │ │ │ └── test3.c │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── glsl2spv_bin2c │ │ │ ├── src │ │ │ │ ├── main.c │ │ │ │ ├── test.frag │ │ │ │ └── test.vert │ │ │ └── xmake.lua │ │ ├── glsl2spv_bin2obj │ │ │ ├── src │ │ │ │ ├── main.c │ │ │ │ ├── test.frag │ │ │ │ └── test.vert │ │ │ └── xmake.lua │ │ ├── group │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ └── xmake.lua │ │ ├── hlsl2spv_bin2c │ │ │ ├── src │ │ │ │ ├── main.c │ │ │ │ ├── test.ps.hlsl │ │ │ │ └── test.vs.hlsl │ │ │ └── xmake.lua │ │ ├── hlsl2spv_bin2obj │ │ │ ├── src │ │ │ │ ├── main.c │ │ │ │ ├── test.ps.hlsl │ │ │ │ └── test.vs.hlsl │ │ │ └── xmake.lua │ │ ├── ispc │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ ├── main.cpp │ │ │ │ └── test.ispc │ │ │ └── xmake.lua │ │ ├── merge_archive │ │ │ ├── src │ │ │ │ ├── add.c │ │ │ │ ├── mul.c │ │ │ │ └── sub.c │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── merge_archive2 │ │ │ ├── src │ │ │ │ ├── add.c │ │ │ │ ├── main.c │ │ │ │ ├── mul.c │ │ │ │ ├── sub.c │ │ │ │ └── subdir │ │ │ │ │ ├── add.c │ │ │ │ │ └── sub.c │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── merge_object │ │ │ ├── src │ │ │ │ ├── interface.c │ │ │ │ ├── interface.h │ │ │ │ └── test.c │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── multiplats_vs │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ ├── main.cpp │ │ │ │ ├── test.asm │ │ │ │ └── test.rc │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── multiplats_xcode │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── native_module │ │ │ ├── cjson │ │ │ │ ├── .gitignore │ │ │ │ ├── modules │ │ │ │ │ └── lua │ │ │ │ │ │ └── cjson │ │ │ │ │ │ ├── src │ │ │ │ │ │ └── cjson.c │ │ │ │ │ │ └── xmake.lua │ │ │ │ ├── src │ │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ └── hello │ │ │ │ ├── .gitignore │ │ │ │ ├── modules │ │ │ │ ├── binary │ │ │ │ │ └── bar │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── src │ │ │ │ │ │ ├── add.cpp │ │ │ │ │ │ └── sub.cpp │ │ │ │ │ │ └── xmake.lua │ │ │ │ └── shared │ │ │ │ │ └── foo │ │ │ │ │ ├── src │ │ │ │ │ └── foo.c │ │ │ │ │ └── xmake.lua │ │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ ├── object_only │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ ├── foo.cpp │ │ │ │ ├── foo.h │ │ │ │ └── main.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── parallel_build │ │ │ ├── 1.cpp │ │ │ ├── 2.cpp │ │ │ └── xmake.lua │ │ └── parse_headerdeps │ │ │ ├── .gitignore │ │ │ ├── common │ │ │ └── test1.hpp │ │ │ └── src │ │ │ ├── test1.cpp │ │ │ └── xmake.lua │ ├── package │ │ ├── basic │ │ │ ├── src │ │ │ │ ├── main.c │ │ │ │ └── test.c │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── brew │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ └── xmake.lua │ │ ├── cmake │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ └── xmake.lua │ │ ├── compatibility │ │ │ ├── deps_with_version │ │ │ │ ├── src │ │ │ │ │ └── main.c │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ │ └── sync_requires_to_deps │ │ │ │ ├── src │ │ │ │ └── main.c │ │ │ │ ├── test.lua │ │ │ │ └── xmake.lua │ │ ├── components │ │ │ ├── src │ │ │ │ ├── graphics.cpp │ │ │ │ ├── main.cpp │ │ │ │ └── network.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── conan │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ └── xmake.lua │ │ ├── depconfigs │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── inherit_base │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── llvm_dev │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ └── xmake.lua │ │ ├── multiconfig │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── test.lua │ │ │ ├── xmake-requires.lock │ │ │ └── xmake.lua │ │ ├── multiplat │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ └── xmake.lua │ │ ├── nuget │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ └── xmake.lua │ │ ├── package_rule │ │ │ ├── repo │ │ │ │ └── packages │ │ │ │ │ └── f │ │ │ │ │ └── foo │ │ │ │ │ ├── rules │ │ │ │ │ └── markdown.lua │ │ │ │ │ └── xmake.lua │ │ │ ├── src │ │ │ │ ├── main.cpp │ │ │ │ └── test.md │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── rootconfigs │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── toolchain_gnu_rm │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── xmake.lua │ │ ├── toolchain_llvm │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── xmake.lua │ │ ├── toolchain_llvm_mingw │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── xmake.lua │ │ ├── toolchain_msvc │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── xmake.lua │ │ ├── toolchain_muslcc │ │ │ ├── src │ │ │ │ └── main.c │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── toolchain_tinycc │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── xmake.lua │ │ ├── toolchain_zig │ │ │ ├── src │ │ │ │ └── main.zig │ │ │ └── xmake.lua │ │ ├── vcpkg │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ └── xmake.lua │ │ └── vcpkg_manifest │ │ │ ├── .gitignore │ │ │ ├── src │ │ │ └── main.cpp │ │ │ └── xmake.lua │ ├── pascal │ │ ├── console │ │ │ ├── src │ │ │ │ └── main.pas │ │ │ └── xmake.lua │ │ ├── console_with_c │ │ │ ├── src │ │ │ │ ├── foo.c │ │ │ │ └── main.pas │ │ │ └── xmake.lua │ │ └── shared │ │ │ ├── src │ │ │ ├── foo.pas │ │ │ └── main.pas │ │ │ └── xmake.lua │ ├── python │ │ ├── cython │ │ │ └── example │ │ │ │ ├── src │ │ │ │ └── example.py │ │ │ │ └── xmake.lua │ │ └── pybind │ │ │ ├── example │ │ │ ├── src │ │ │ │ └── example.cpp │ │ │ └── xmake.lua │ │ │ └── example_with_soabi │ │ │ ├── src │ │ │ └── example.cpp │ │ │ └── xmake.lua │ ├── qt │ │ ├── console │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ └── xmake.lua │ │ ├── console_static │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ └── xmake.lua │ │ ├── quickapp │ │ │ ├── src │ │ │ │ ├── main.cpp │ │ │ │ ├── main.qml │ │ │ │ └── qml.qrc │ │ │ └── xmake.lua │ │ ├── quickapp_static │ │ │ ├── src │ │ │ │ ├── main.cpp │ │ │ │ ├── main.qml │ │ │ │ └── qml.qrc │ │ │ └── xmake.lua │ │ ├── quickplugin │ │ │ ├── src │ │ │ │ ├── Foo.cpp │ │ │ │ ├── Foo.h │ │ │ │ ├── Plugin.cpp │ │ │ │ └── Plugin.h │ │ │ └── xmake.lua │ │ ├── shared_library │ │ │ ├── src │ │ │ │ ├── demo.cpp │ │ │ │ ├── demo.h │ │ │ │ └── demo_global.h │ │ │ └── xmake.lua │ │ ├── static_library │ │ │ ├── src │ │ │ │ ├── demo.cpp │ │ │ │ └── demo.h │ │ │ └── xmake.lua │ │ ├── widgetapp │ │ │ ├── src │ │ │ │ ├── main.cpp │ │ │ │ ├── mainwindow.cpp │ │ │ │ ├── mainwindow.h │ │ │ │ └── mainwindow.ui │ │ │ └── xmake.lua │ │ ├── widgetapp_private_slot │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ ├── mainwindow.ui │ │ │ └── xmake.lua │ │ ├── widgetapp_private_slot2 │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ ├── mainwindow.ui │ │ │ └── xmake.lua │ │ ├── widgetapp_static │ │ │ ├── src │ │ │ │ ├── main.cpp │ │ │ │ ├── mainwindow.cpp │ │ │ │ ├── mainwindow.h │ │ │ │ └── mainwindow.ui │ │ │ └── xmake.lua │ │ ├── with_private │ │ │ ├── src │ │ │ │ ├── main.cpp │ │ │ │ ├── mainwindow.cpp │ │ │ │ ├── mainwindow.h │ │ │ │ └── mainwindow.ui │ │ │ └── xmake.lua │ │ └── with_ts │ │ │ ├── src │ │ │ ├── demo_zh_CN.ts │ │ │ ├── demo_zh_TW.ts │ │ │ ├── main.cpp │ │ │ ├── mainwindow.cpp │ │ │ ├── mainwindow.h │ │ │ └── mainwindow.ui │ │ │ └── xmake.lua │ ├── rust │ │ ├── cargo_deps │ │ │ ├── src │ │ │ │ └── main.rs │ │ │ └── xmake.lua │ │ ├── cargo_deps_cross_build │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── main.rs │ │ │ └── xmake.lua │ │ ├── cargo_deps_with_toml │ │ │ ├── Cargo.toml │ │ │ ├── src │ │ │ │ └── main.rs │ │ │ └── xmake.lua │ │ ├── console │ │ │ ├── src │ │ │ │ └── main.rs │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── cxx_call_rust_library │ │ │ ├── src │ │ │ │ ├── bridge.rsx │ │ │ │ ├── foo.rs │ │ │ │ └── main.cc │ │ │ └── xmake.lua │ │ ├── rust_call_cxx_library │ │ │ ├── src │ │ │ │ ├── foo.cc │ │ │ │ └── main.rs │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── shared_library │ │ │ ├── src │ │ │ │ ├── foo.rs │ │ │ │ └── main.rs │ │ │ └── xmake.lua │ │ └── static_library │ │ │ ├── src │ │ │ ├── foo.rs │ │ │ └── main.rs │ │ │ ├── test.lua │ │ │ └── xmake.lua │ ├── swift │ │ ├── bidirectional_cxx_interop_lib │ │ │ ├── include │ │ │ │ └── fibonacci │ │ │ │ │ ├── fibonacci.h │ │ │ │ │ └── module.modulemap │ │ │ ├── lib │ │ │ │ ├── fibonacci.cpp │ │ │ │ └── fibonacci.swift │ │ │ ├── src │ │ │ │ ├── fibonacci.cpp │ │ │ │ └── fibonacci.swift │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── console │ │ │ ├── src │ │ │ │ └── main.swift │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── cross_modules │ │ │ ├── src │ │ │ │ ├── A.swift │ │ │ │ └── main.swift │ │ │ └── xmake.lua │ │ ├── cxx_interop │ │ │ ├── lib │ │ │ │ └── fibonacci │ │ │ │ │ └── fibonacci.swift │ │ │ ├── src │ │ │ │ └── fibonacci.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── cxx_interop_lib │ │ │ ├── lib │ │ │ │ └── fibonacci │ │ │ │ │ └── fibonacci.swift │ │ │ ├── src │ │ │ │ └── fibonacci.cpp │ │ │ ├── test.lua │ │ │ └── xmake.lua │ │ ├── iosapp │ │ │ ├── src │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ ├── SceneDelegate.swift │ │ │ │ └── ViewController.swift │ │ │ └── xmake.lua │ │ ├── macapp │ │ │ ├── src │ │ │ │ ├── AppDelegate.swift │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ ├── ViewController.swift │ │ │ │ └── test.entitlements │ │ │ └── xmake.lua │ │ └── modulemap │ │ │ ├── src │ │ │ ├── hello.cpp │ │ │ ├── hello.h │ │ │ ├── main.swift │ │ │ └── module.modulemap │ │ │ └── xmake.lua │ ├── swig │ │ ├── auto_include │ │ │ ├── src │ │ │ │ ├── example.cpp │ │ │ │ └── example.i │ │ │ └── xmake.lua │ │ ├── java_c │ │ │ ├── src │ │ │ │ ├── example.c │ │ │ │ ├── example.i │ │ │ │ ├── example2.i │ │ │ │ └── test.h │ │ │ └── xmake.lua │ │ ├── lua_c │ │ │ ├── src │ │ │ │ ├── example.c │ │ │ │ └── example.i │ │ │ └── xmake.lua │ │ ├── python_c │ │ │ ├── src │ │ │ │ ├── example.c │ │ │ │ └── example.i │ │ │ └── xmake.lua │ │ ├── python_c_with_soabi │ │ │ ├── src │ │ │ │ ├── example.c │ │ │ │ └── example.i │ │ │ └── xmake.lua │ │ └── python_cpp │ │ │ ├── src │ │ │ ├── example.cpp │ │ │ └── example.i │ │ │ └── xmake.lua │ ├── vala │ │ ├── gtk+3 │ │ │ ├── src │ │ │ │ └── main.vala │ │ │ └── xmake.lua │ │ ├── includec │ │ │ ├── src │ │ │ │ ├── main.vala │ │ │ │ ├── printer.c │ │ │ │ └── printer.vala │ │ │ └── xmake.lua │ │ ├── lua │ │ │ ├── src │ │ │ │ └── main.vala │ │ │ └── xmake.lua │ │ ├── sharedlib │ │ │ ├── src │ │ │ │ ├── main.vala │ │ │ │ └── mymath.vala │ │ │ └── xmake.lua │ │ ├── sqlite3 │ │ │ ├── src │ │ │ │ └── main.vala │ │ │ └── xmake.lua │ │ └── staticlib │ │ │ ├── src │ │ │ ├── main.vala │ │ │ └── mymath.vala │ │ │ └── xmake.lua │ ├── windows │ │ ├── driver │ │ │ ├── kmdf │ │ │ │ ├── ioctl │ │ │ │ │ ├── driver │ │ │ │ │ │ ├── nonpnp.c │ │ │ │ │ │ ├── nonpnp.h │ │ │ │ │ │ ├── nonpnp.rc │ │ │ │ │ │ └── trace.h │ │ │ │ │ ├── exe │ │ │ │ │ │ ├── install.c │ │ │ │ │ │ ├── nonpnp.inf │ │ │ │ │ │ └── testapp.c │ │ │ │ │ ├── localwpp.ini │ │ │ │ │ ├── public.h │ │ │ │ │ └── xmake.lua │ │ │ │ └── serial │ │ │ │ │ ├── error.c │ │ │ │ │ ├── flush.c │ │ │ │ │ ├── immediat.c │ │ │ │ │ ├── initunlo.c │ │ │ │ │ ├── ioctl.c │ │ │ │ │ ├── isr.c │ │ │ │ │ ├── log.c │ │ │ │ │ ├── log.h │ │ │ │ │ ├── modmflow.c │ │ │ │ │ ├── openclos.c │ │ │ │ │ ├── pnp.c │ │ │ │ │ ├── power.c │ │ │ │ │ ├── precomp.h │ │ │ │ │ ├── precompsrc.c │ │ │ │ │ ├── purge.c │ │ │ │ │ ├── qsfile.c │ │ │ │ │ ├── read.c │ │ │ │ │ ├── registry.c │ │ │ │ │ ├── serial.h │ │ │ │ │ ├── serial.inx │ │ │ │ │ ├── serial.rc │ │ │ │ │ ├── serialp.h │ │ │ │ │ ├── serlog.mc │ │ │ │ │ ├── trace.h │ │ │ │ │ ├── utils.c │ │ │ │ │ ├── waitmask.c │ │ │ │ │ ├── wmi.c │ │ │ │ │ ├── write.c │ │ │ │ │ └── xmake.lua │ │ │ ├── umdf │ │ │ │ ├── echo │ │ │ │ │ ├── driver │ │ │ │ │ │ ├── device.c │ │ │ │ │ │ ├── device.h │ │ │ │ │ │ ├── driver.c │ │ │ │ │ │ ├── driver.h │ │ │ │ │ │ ├── echoum.inx │ │ │ │ │ │ ├── queue.c │ │ │ │ │ │ └── queue.h │ │ │ │ │ ├── exe │ │ │ │ │ │ ├── echoapp.cpp │ │ │ │ │ │ └── public.h │ │ │ │ │ └── xmake.lua │ │ │ │ └── skeleton │ │ │ │ │ ├── Skeleton.rc │ │ │ │ │ ├── UMDFSkeleton_OSR.inx │ │ │ │ │ ├── UMDFSkeleton_Root.inx │ │ │ │ │ ├── comsup.cpp │ │ │ │ │ ├── comsup.h │ │ │ │ │ ├── device.cpp │ │ │ │ │ ├── device.h │ │ │ │ │ ├── dllsup.cpp │ │ │ │ │ ├── driver.cpp │ │ │ │ │ ├── driver.h │ │ │ │ │ ├── exports.def │ │ │ │ │ ├── internal.h │ │ │ │ │ └── xmake.lua │ │ │ └── wdm │ │ │ │ ├── msdsm │ │ │ │ ├── SampleDSM.inf │ │ │ │ ├── dsmmain.c │ │ │ │ ├── dsmtrace.mof │ │ │ │ ├── intrface.c │ │ │ │ ├── msdsm.h │ │ │ │ ├── msdsm.mof │ │ │ │ ├── msdsm.rc │ │ │ │ ├── msdsmdsm.mof │ │ │ │ ├── precomp.h │ │ │ │ ├── precompsrc.c │ │ │ │ ├── prototypes.h │ │ │ │ ├── trace.h │ │ │ │ ├── utils.c │ │ │ │ ├── wmi.c │ │ │ │ └── xmake.lua │ │ │ │ └── perfcounters │ │ │ │ ├── kcs.c │ │ │ │ ├── kcs.h │ │ │ │ ├── kcs.man │ │ │ │ ├── kcs.rc │ │ │ │ └── xmake.lua │ │ ├── idl │ │ │ ├── test_norpc │ │ │ │ ├── src │ │ │ │ │ ├── lockowner.idl │ │ │ │ │ └── test_iid.c │ │ │ │ └── xmake.lua │ │ │ ├── test_norpc_proxy │ │ │ │ ├── src │ │ │ │ │ ├── lockowner.idl │ │ │ │ │ └── test_iid.c │ │ │ │ └── xmake.lua │ │ │ ├── test_rpc │ │ │ │ ├── src │ │ │ │ │ ├── example.idl │ │ │ │ │ └── test_iid.c │ │ │ │ └── xmake.lua │ │ │ └── test_rpc_noserver │ │ │ │ ├── src │ │ │ │ ├── example.idl │ │ │ │ └── test_iid.c │ │ │ │ └── xmake.lua │ │ └── winsdk │ │ │ ├── usbview │ │ │ ├── app.config │ │ │ ├── bang.ico │ │ │ ├── codeanalysis.h │ │ │ ├── debug.c │ │ │ ├── devnode.c │ │ │ ├── dispaud.c │ │ │ ├── display.c │ │ │ ├── dispvid.c │ │ │ ├── enum.c │ │ │ ├── h264.c │ │ │ ├── h264.h │ │ │ ├── hub.ico │ │ │ ├── langidlist.h │ │ │ ├── monitor.ico │ │ │ ├── port.ico │ │ │ ├── resource.h │ │ │ ├── split.cur │ │ │ ├── ssport.ico │ │ │ ├── ssusb.ico │ │ │ ├── usb.ico │ │ │ ├── usbdesc.h │ │ │ ├── usbschema.hpp │ │ │ ├── usbviddesc.h │ │ │ ├── uvcdesc.h │ │ │ ├── uvcview.c │ │ │ ├── uvcview.h │ │ │ ├── uvcview.rc │ │ │ ├── vndrlist.h │ │ │ ├── xmake.lua │ │ │ ├── xmlhelper.cpp │ │ │ └── xmlhelper.h │ │ │ └── windemo │ │ │ ├── main.cpp │ │ │ ├── resource.h │ │ │ ├── small.ico │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ ├── targetver.h │ │ │ ├── test │ │ │ ├── test.h │ │ │ ├── test.ico │ │ │ ├── test.rc │ │ │ └── xmake.lua │ ├── xmake_cli │ │ ├── hello │ │ │ ├── src │ │ │ │ ├── lni │ │ │ │ │ └── main.c │ │ │ │ └── lua │ │ │ │ │ └── main.lua │ │ │ └── xmake.lua │ │ ├── ide_integration │ │ │ ├── assets │ │ │ │ ├── targetpath.lua │ │ │ │ └── targets.lua │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── xmake.lua │ │ └── xmake │ │ │ ├── src │ │ │ ├── main.c │ │ │ ├── xmake.ico │ │ │ └── xmake.rc │ │ │ └── xmake.lua │ └── zig │ │ ├── console │ │ ├── src │ │ │ ├── main.zig │ │ │ └── test.zig │ │ └── xmake.lua │ │ ├── console_c_call_zig │ │ ├── src │ │ │ ├── main.c │ │ │ └── test.zig │ │ └── xmake.lua │ │ ├── shared_library │ │ ├── src │ │ │ ├── main.zig │ │ │ └── test.zig │ │ └── xmake.lua │ │ └── static_library │ │ ├── src │ │ ├── main.zig │ │ └── test.zig │ │ └── xmake.lua ├── run.lua ├── runner.lua ├── test │ └── test.lua ├── test_utils │ ├── check.lua │ ├── context.lua │ ├── print_error.lua │ ├── test_assert.lua │ ├── test_build.lua │ └── test_skip.lua └── ui │ ├── desktop.lua │ ├── dialog.lua │ ├── events.lua │ ├── inputdialog.lua │ ├── mconfdialog.lua │ ├── utf8dialog.lua │ └── window.lua └── xmake ├── actions ├── build │ ├── build.lua │ ├── build_files.lua │ ├── check.lua │ ├── cleaner.lua │ ├── deprecated │ │ ├── build.lua │ │ ├── build_files.lua │ │ └── kinds │ │ │ ├── binary.lua │ │ │ ├── moduleonly.lua │ │ │ ├── object.lua │ │ │ ├── rule_groups.lua │ │ │ ├── shared.lua │ │ │ └── static.lua │ ├── main.lua │ └── xmake.lua ├── clean │ ├── main.lua │ └── xmake.lua ├── config │ ├── configfiles.lua │ ├── main.lua │ ├── menuconf.lua │ ├── scangen.lua │ └── xmake.lua ├── create │ ├── main.lua │ └── xmake.lua ├── global │ ├── main.lua │ ├── menuconf.lua │ └── xmake.lua ├── install │ ├── install.lua │ ├── install_admin.lua │ ├── main.lua │ └── xmake.lua ├── package │ ├── local │ │ └── main.lua │ ├── main.lua │ ├── oldpkg │ │ └── main.lua │ ├── remote │ │ └── main.lua │ └── xmake.lua ├── require │ ├── main.lua │ └── xmake.lua ├── run │ ├── main.lua │ └── xmake.lua ├── service │ ├── main.lua │ └── xmake.lua ├── test │ ├── main.lua │ └── xmake.lua ├── uninstall │ ├── main.lua │ ├── uninstall.lua │ ├── uninstall_admin.lua │ └── xmake.lua └── update │ ├── main.lua │ └── xmake.lua ├── core ├── _xmake_main.lua ├── base │ ├── base64.lua │ ├── binutils.lua │ ├── bit.lua │ ├── bloom_filter.lua │ ├── bytes.lua │ ├── cli.lua │ ├── colors.lua │ ├── compat │ │ ├── bit.lua │ │ └── env.lua │ ├── coroutine.lua │ ├── cpu.lua │ ├── debugger.lua │ ├── deprecated.lua │ ├── dump.lua │ ├── emoji.lua │ ├── filter.lua │ ├── fwatcher.lua │ ├── global.lua │ ├── graph.lua │ ├── hash.lua │ ├── hashset.lua │ ├── heap.lua │ ├── interpreter.lua │ ├── io.lua │ ├── json.lua │ ├── libc.lua │ ├── linuxos.lua │ ├── list.lua │ ├── log.lua │ ├── macos.lua │ ├── math.lua │ ├── memory.lua │ ├── object.lua │ ├── option.lua │ ├── os.lua │ ├── path.lua │ ├── pipe.lua │ ├── poller.lua │ ├── private │ │ ├── async_task.lua │ │ ├── instance_deps.lua │ │ ├── is_cross.lua │ │ ├── match_copyfiles.lua │ │ ├── pipe_event.lua │ │ └── select_script.lua │ ├── privilege.lua │ ├── process.lua │ ├── profiler.lua │ ├── queue.lua │ ├── scheduler.lua │ ├── scopeinfo.lua │ ├── semver.lua │ ├── serialize.lua │ ├── signal.lua │ ├── singleton.lua │ ├── socket.lua │ ├── string.lua │ ├── table.lua │ ├── task.lua │ ├── text.lua │ ├── thread.lua │ ├── timer.lua │ ├── todisplay.lua │ ├── tty.lua │ ├── utils.lua │ ├── winos.lua │ ├── xmake.lua │ └── xml.lua ├── cache │ ├── detectcache.lua │ ├── global_detectcache.lua │ ├── globalcache.lua │ ├── localcache.lua │ └── memcache.lua ├── compress │ └── lz4.lua ├── language │ ├── language.lua │ └── menu.lua ├── main.lua ├── package │ ├── component.lua │ ├── package.lua │ └── repository.lua ├── platform │ ├── environment.lua │ ├── menu.lua │ └── platform.lua ├── project │ ├── cache.lua │ ├── config.lua │ ├── deprecated │ │ └── project.lua │ ├── option.lua │ ├── package.lua │ ├── policy.lua │ ├── project.lua │ ├── rule.lua │ ├── target.lua │ └── template.lua ├── sandbox │ ├── modules │ │ ├── assert.lua │ │ ├── catch.lua │ │ ├── coroutine.lua │ │ ├── cprint.lua │ │ ├── cprintf.lua │ │ ├── debug.lua │ │ ├── dprint.lua │ │ ├── dprintf.lua │ │ ├── finally.lua │ │ ├── find_package.lua │ │ ├── find_packages.lua │ │ ├── format.lua │ │ ├── get_config.lua │ │ ├── has_config.lua │ │ ├── has_package.lua │ │ ├── hash.lua │ │ ├── import.lua │ │ ├── import │ │ │ ├── core │ │ │ │ ├── base │ │ │ │ │ ├── base64.lua │ │ │ │ │ ├── binutils.lua │ │ │ │ │ ├── bit.lua │ │ │ │ │ ├── bloom_filter.lua │ │ │ │ │ ├── bytes.lua │ │ │ │ │ ├── cli.lua │ │ │ │ │ ├── colors.lua │ │ │ │ │ ├── cpu.lua │ │ │ │ │ ├── dlist.lua │ │ │ │ │ ├── filter.lua │ │ │ │ │ ├── fwatcher.lua │ │ │ │ │ ├── global.lua │ │ │ │ │ ├── graph.lua │ │ │ │ │ ├── hashset.lua │ │ │ │ │ ├── heap.lua │ │ │ │ │ ├── interpreter.lua │ │ │ │ │ ├── json.lua │ │ │ │ │ ├── libc.lua │ │ │ │ │ ├── list.lua │ │ │ │ │ ├── memory.lua │ │ │ │ │ ├── object.lua │ │ │ │ │ ├── option.lua │ │ │ │ │ ├── pipe.lua │ │ │ │ │ ├── privilege.lua │ │ │ │ │ ├── process.lua │ │ │ │ │ ├── profiler.lua │ │ │ │ │ ├── queue.lua │ │ │ │ │ ├── scheduler.lua │ │ │ │ │ ├── semver.lua │ │ │ │ │ ├── signal.lua │ │ │ │ │ ├── singleton.lua │ │ │ │ │ ├── socket.lua │ │ │ │ │ ├── task.lua │ │ │ │ │ ├── text.lua │ │ │ │ │ ├── thread.lua │ │ │ │ │ ├── tty.lua │ │ │ │ │ └── xml.lua │ │ │ │ ├── cache │ │ │ │ │ ├── detectcache.lua │ │ │ │ │ ├── global_detectcache.lua │ │ │ │ │ ├── globalcache.lua │ │ │ │ │ ├── localcache.lua │ │ │ │ │ └── memcache.lua │ │ │ │ ├── compress │ │ │ │ │ └── lz4.lua │ │ │ │ ├── language │ │ │ │ │ ├── language.lua │ │ │ │ │ └── menu.lua │ │ │ │ ├── package │ │ │ │ │ ├── package.lua │ │ │ │ │ └── repository.lua │ │ │ │ ├── platform │ │ │ │ │ ├── menu.lua │ │ │ │ │ └── platform.lua │ │ │ │ ├── project │ │ │ │ │ ├── config.lua │ │ │ │ │ ├── menu.lua │ │ │ │ │ ├── option.lua │ │ │ │ │ ├── policy.lua │ │ │ │ │ ├── project.lua │ │ │ │ │ ├── rule.lua │ │ │ │ │ ├── target.lua │ │ │ │ │ ├── task.lua │ │ │ │ │ └── template.lua │ │ │ │ ├── sandbox │ │ │ │ │ ├── module.lua │ │ │ │ │ └── sandbox.lua │ │ │ │ ├── theme │ │ │ │ │ └── theme.lua │ │ │ │ ├── tool │ │ │ │ │ ├── compiler.lua │ │ │ │ │ ├── linker.lua │ │ │ │ │ └── toolchain.lua │ │ │ │ └── ui │ │ │ │ │ ├── action.lua │ │ │ │ │ ├── application.lua │ │ │ │ │ ├── border.lua │ │ │ │ │ ├── boxdialog.lua │ │ │ │ │ ├── button.lua │ │ │ │ │ ├── canvas.lua │ │ │ │ │ ├── choicebox.lua │ │ │ │ │ ├── choicedialog.lua │ │ │ │ │ ├── curses.lua │ │ │ │ │ ├── desktop.lua │ │ │ │ │ ├── dialog.lua │ │ │ │ │ ├── event.lua │ │ │ │ │ ├── inputdialog.lua │ │ │ │ │ ├── label.lua │ │ │ │ │ ├── log.lua │ │ │ │ │ ├── mconfdialog.lua │ │ │ │ │ ├── menubar.lua │ │ │ │ │ ├── menuconf.lua │ │ │ │ │ ├── object.lua │ │ │ │ │ ├── panel.lua │ │ │ │ │ ├── point.lua │ │ │ │ │ ├── program.lua │ │ │ │ │ ├── rect.lua │ │ │ │ │ ├── statusbar.lua │ │ │ │ │ ├── textarea.lua │ │ │ │ │ ├── textdialog.lua │ │ │ │ │ ├── textedit.lua │ │ │ │ │ ├── view.lua │ │ │ │ │ └── window.lua │ │ │ ├── lib │ │ │ │ ├── detect │ │ │ │ │ ├── find_directory.lua │ │ │ │ │ ├── find_file.lua │ │ │ │ │ ├── find_library.lua │ │ │ │ │ ├── find_path.lua │ │ │ │ │ ├── find_program.lua │ │ │ │ │ └── find_programver.lua │ │ │ │ ├── lni.lua │ │ │ │ ├── lua │ │ │ │ │ └── package.lua │ │ │ │ └── luajit │ │ │ │ │ ├── bcsave.lua │ │ │ │ │ ├── bit.lua │ │ │ │ │ ├── ffi.lua │ │ │ │ │ └── jit.lua │ │ │ └── private │ │ │ │ └── core │ │ │ │ └── base │ │ │ │ ├── is_cross.lua │ │ │ │ ├── match_copyfiles.lua │ │ │ │ └── select_script.lua │ │ ├── inherit.lua │ │ ├── interpreter │ │ │ ├── format.lua │ │ │ ├── getenv.lua │ │ │ ├── hash.lua │ │ │ ├── ipairs.lua │ │ │ ├── is_host.lua │ │ │ ├── is_subhost.lua │ │ │ ├── linuxos.lua │ │ │ ├── macos.lua │ │ │ ├── math.lua │ │ │ ├── os.lua │ │ │ ├── pairs.lua │ │ │ ├── path.lua │ │ │ ├── print.lua │ │ │ ├── printf.lua │ │ │ ├── string.lua │ │ │ ├── table.lua │ │ │ ├── tonumber.lua │ │ │ ├── tostring.lua │ │ │ ├── type.lua │ │ │ ├── unpack.lua │ │ │ ├── winos.lua │ │ │ └── xmake.lua │ │ ├── io.lua │ │ ├── ipairs.lua │ │ ├── irpairs.lua │ │ ├── is_arch.lua │ │ ├── is_config.lua │ │ ├── is_host.lua │ │ ├── is_mode.lua │ │ ├── is_plat.lua │ │ ├── is_subhost.lua │ │ ├── linuxos.lua │ │ ├── macos.lua │ │ ├── math.lua │ │ ├── os.lua │ │ ├── pairs.lua │ │ ├── path.lua │ │ ├── print.lua │ │ ├── printf.lua │ │ ├── raise.lua │ │ ├── string.lua │ │ ├── table.lua │ │ ├── todisplay.lua │ │ ├── tonumber.lua │ │ ├── tostring.lua │ │ ├── try.lua │ │ ├── type.lua │ │ ├── unpack.lua │ │ ├── utils.lua │ │ ├── val.lua │ │ ├── vformat.lua │ │ ├── vprint.lua │ │ ├── vprintf.lua │ │ ├── winos.lua │ │ ├── wprint.lua │ │ └── xmake.lua │ └── sandbox.lua ├── theme │ └── theme.lua ├── tool │ ├── builder.lua │ ├── compiler.lua │ ├── linker.lua │ ├── tool.lua │ └── toolchain.lua └── ui │ ├── action.lua │ ├── application.lua │ ├── border.lua │ ├── boxdialog.lua │ ├── button.lua │ ├── canvas.lua │ ├── choicebox.lua │ ├── choicedialog.lua │ ├── curses.lua │ ├── desktop.lua │ ├── dialog.lua │ ├── event.lua │ ├── inputdialog.lua │ ├── label.lua │ ├── log.lua │ ├── mconfdialog.lua │ ├── menubar.lua │ ├── menuconf.lua │ ├── object.lua │ ├── panel.lua │ ├── point.lua │ ├── program.lua │ ├── rect.lua │ ├── scrollbar.lua │ ├── statusbar.lua │ ├── textarea.lua │ ├── textdialog.lua │ ├── textedit.lua │ ├── view.lua │ └── window.lua ├── includes ├── check │ ├── check_bigendian.lua │ ├── check_cflags.lua │ ├── check_cfuncs.lua │ ├── check_cincludes.lua │ ├── check_csnippets.lua │ ├── check_ctypes.lua │ ├── check_cxxflags.lua │ ├── check_cxxfuncs.lua │ ├── check_cxxincludes.lua │ ├── check_cxxsnippets.lua │ ├── check_cxxtypes.lua │ ├── check_features.lua │ ├── check_links.lua │ ├── check_macros.lua │ ├── check_sizeof.lua │ ├── check_syslinks.lua │ └── xmake.lua ├── qt │ ├── qt_add_static_plugins.lua │ └── xmake.lua ├── xpack │ └── xmake.lua └── xrepo │ └── xmake.lua ├── languages ├── asm │ ├── load.lua │ └── xmake.lua ├── c++ │ ├── check_main.lua │ ├── load.lua │ └── xmake.lua ├── c │ ├── check_main.lua │ ├── load.lua │ └── xmake.lua ├── cuda │ ├── check_main.lua │ ├── load.lua │ └── xmake.lua ├── dlang │ ├── check_main.lua │ ├── load.lua │ └── xmake.lua ├── fortran │ ├── check_main.lua │ ├── load.lua │ └── xmake.lua ├── golang │ ├── check_main.lua │ ├── load.lua │ └── xmake.lua ├── kotlin │ ├── check_main.lua │ ├── load.lua │ └── xmake.lua ├── msrc │ ├── load.lua │ └── xmake.lua ├── nim │ ├── load.lua │ └── xmake.lua ├── objc++ │ ├── check_main.lua │ ├── load.lua │ └── xmake.lua ├── pascal │ ├── check_main.lua │ ├── load.lua │ └── xmake.lua ├── rust │ ├── check_main.lua │ ├── load.lua │ └── xmake.lua ├── swift │ ├── load.lua │ └── xmake.lua └── zig │ ├── check_main.lua │ ├── load.lua │ └── xmake.lua ├── modules ├── async │ ├── jobgraph.lua │ └── runjobs.lua ├── cli │ ├── amalgamate.lua │ ├── archive.lua │ ├── bisect.lua │ └── extract.lua ├── core │ ├── base │ │ └── license.lua │ ├── project │ │ └── depend.lua │ └── tools │ │ ├── ar.lua │ │ ├── ar │ │ └── has_flags.lua │ │ ├── ar2000.lua │ │ ├── ar6x.lua │ │ ├── armar.lua │ │ ├── armasm.lua │ │ ├── armasm64_msvc.lua │ │ ├── armasm64_msvc │ │ └── has_flags.lua │ │ ├── armasm_msvc.lua │ │ ├── armasm_msvc │ │ └── has_flags.lua │ │ ├── armcc.lua │ │ ├── armcc │ │ └── parse_deps.lua │ │ ├── armclang.lua │ │ ├── armclang │ │ └── has_flags.lua │ │ ├── armlink.lua │ │ ├── bl51.lua │ │ ├── c51.lua │ │ ├── cc.lua │ │ ├── circle.lua │ │ ├── circle │ │ └── has_flags.lua │ │ ├── cl.lua │ │ ├── cl │ │ ├── cfeatures.lua │ │ ├── cxxfeatures.lua │ │ ├── features.lua │ │ ├── has_flags.lua │ │ ├── parse_deps.lua │ │ ├── parse_deps_json.lua │ │ └── parse_include.lua │ │ ├── cl2000.lua │ │ ├── cl2000 │ │ ├── has_flags.lua │ │ └── parse_deps.lua │ │ ├── cl6x.lua │ │ ├── cl6x │ │ ├── has_flags.lua │ │ └── parse_deps.lua │ │ ├── cl_json │ │ └── parse_deps.lua │ │ ├── clang.lua │ │ ├── clang │ │ ├── cfeatures.lua │ │ ├── cxxfeatures.lua │ │ ├── features.lua │ │ └── has_flags.lua │ │ ├── clang_cl.lua │ │ ├── clang_cl │ │ └── has_flags.lua │ │ ├── clangxx.lua │ │ ├── clangxx │ │ ├── features.lua │ │ └── has_flags.lua │ │ ├── cosmoar.lua │ │ ├── cosmocc.lua │ │ ├── cosmocc │ │ └── has_flags.lua │ │ ├── cosmocxx.lua │ │ ├── cosmocxx │ │ └── has_flags.lua │ │ ├── cparser.lua │ │ ├── cxx.lua │ │ ├── dmd.lua │ │ ├── dmd │ │ └── has_flags.lua │ │ ├── dpcpp.lua │ │ ├── dpcpp │ │ ├── cfeatures.lua │ │ ├── cxxfeatures.lua │ │ ├── features.lua │ │ └── has_flags.lua │ │ ├── emar.lua │ │ ├── emcc.lua │ │ ├── emcc │ │ └── has_flags.lua │ │ ├── emxx.lua │ │ ├── emxx │ │ └── has_flags.lua │ │ ├── fasm.lua │ │ ├── flang.lua │ │ ├── flang │ │ └── has_flags.lua │ │ ├── fpc.lua │ │ ├── fpc │ │ └── has_flags.lua │ │ ├── gcc.lua │ │ ├── gcc │ │ ├── cfeatures.lua │ │ ├── cxxfeatures.lua │ │ ├── features.lua │ │ ├── has_flags.lua │ │ └── parse_deps.lua │ │ ├── gcc_ar.lua │ │ ├── gccgo.lua │ │ ├── gccgo │ │ └── has_flags.lua │ │ ├── gdc.lua │ │ ├── gdc │ │ └── has_flags.lua │ │ ├── gfortran.lua │ │ ├── gfortran │ │ └── has_flags.lua │ │ ├── go.lua │ │ ├── go │ │ └── has_flags.lua │ │ ├── gxx.lua │ │ ├── gxx │ │ ├── features.lua │ │ └── has_flags.lua │ │ ├── iarchive.lua │ │ ├── icc.lua │ │ ├── icc │ │ └── has_flags.lua │ │ ├── iccarm.lua │ │ ├── iccarm │ │ └── has_flags.lua │ │ ├── icl.lua │ │ ├── icl │ │ └── has_flags.lua │ │ ├── icpc.lua │ │ ├── icpc │ │ └── has_flags.lua │ │ ├── icpx.lua │ │ ├── icpx │ │ ├── features.lua │ │ └── has_flags.lua │ │ ├── icx.lua │ │ ├── icx │ │ ├── cfeatures.lua │ │ ├── cxxfeatures.lua │ │ ├── features.lua │ │ └── has_flags.lua │ │ ├── ifort.lua │ │ ├── ifort │ │ └── has_flags.lua │ │ ├── ifx.lua │ │ ├── ifx │ │ └── has_flags.lua │ │ ├── ilinkarm.lua │ │ ├── kotlinc_native.lua │ │ ├── kotlinc_native │ │ └── has_flags.lua │ │ ├── ld.lua │ │ ├── ld64_lld.lua │ │ ├── ld_lld.lua │ │ ├── ldc2.lua │ │ ├── ldc2 │ │ └── has_flags.lua │ │ ├── link.lua │ │ ├── link │ │ └── has_flags.lua │ │ ├── lld_link.lua │ │ ├── llvm_ar.lua │ │ ├── llvm_rc.lua │ │ ├── ml.lua │ │ ├── ml │ │ └── has_flags.lua │ │ ├── ml64.lua │ │ ├── ml64 │ │ └── has_flags.lua │ │ ├── mold.lua │ │ ├── nasm.lua │ │ ├── nim.lua │ │ ├── nim │ │ └── has_flags.lua │ │ ├── nvc.lua │ │ ├── nvc │ │ ├── features.lua │ │ └── has_flags.lua │ │ ├── nvcc.lua │ │ ├── nvcc │ │ └── has_flags.lua │ │ ├── nvcxx.lua │ │ ├── nvcxx │ │ ├── features.lua │ │ └── has_flags.lua │ │ ├── nvfortran.lua │ │ ├── nvfortran │ │ └── has_flags.lua │ │ ├── rc.lua │ │ ├── rc │ │ ├── has_flags.lua │ │ └── parse_deps.lua │ │ ├── rustc.lua │ │ ├── rustc │ │ ├── has_flags.lua │ │ └── target_triple.lua │ │ ├── sdar.lua │ │ ├── sdasstm8.lua │ │ ├── sdcc.lua │ │ ├── sdcc │ │ └── has_flags.lua │ │ ├── swift_frontend.lua │ │ ├── swift_frontend │ │ └── has_flags.lua │ │ ├── swiftc.lua │ │ ├── swiftc │ │ └── has_flags.lua │ │ ├── tcc.lua │ │ ├── tcc │ │ └── has_flags.lua │ │ ├── windres.lua │ │ ├── yasm.lua │ │ ├── zig.lua │ │ ├── zig │ │ └── has_flags.lua │ │ ├── zig_cc.lua │ │ ├── zig_cc │ │ ├── features.lua │ │ └── has_flags.lua │ │ ├── zig_cxx.lua │ │ └── zig_cxx │ │ ├── features.lua │ │ └── has_flags.lua ├── detect │ ├── packages │ │ ├── find_libxml2.lua │ │ ├── find_mbedtls.lua │ │ ├── find_mkl.lua │ │ ├── find_mysql.lua │ │ ├── find_nvtx.lua │ │ ├── find_openssl.lua │ │ ├── find_pcre.lua │ │ ├── find_pcre2.lua │ │ ├── find_tbb.lua │ │ ├── find_vulkansdk.lua │ │ └── find_zlib.lua │ ├── sdks │ │ ├── find_android_sdk.lua │ │ ├── find_c51.lua │ │ ├── find_cross_toolchain.lua │ │ ├── find_cuda.lua │ │ ├── find_dia_sdk.lua │ │ ├── find_dotnet.lua │ │ ├── find_emsdk.lua │ │ ├── find_hdk.lua │ │ ├── find_iarsdk.lua │ │ ├── find_iccenv.lua │ │ ├── find_icxenv.lua │ │ ├── find_ifortenv.lua │ │ ├── find_ifxenv.lua │ │ ├── find_masm32.lua │ │ ├── find_matlab.lua │ │ ├── find_matlab_runtime.lua │ │ ├── find_mdk.lua │ │ ├── find_mingw.lua │ │ ├── find_ndk.lua │ │ ├── find_qt.lua │ │ ├── find_sdasstm8.lua │ │ ├── find_vcpkgdir.lua │ │ ├── find_vstudio.lua │ │ ├── find_vulkansdk.lua │ │ ├── find_wasisdk.lua │ │ ├── find_wdk.lua │ │ ├── find_xcode.lua │ │ └── matlab.lua │ └── tools │ │ ├── find_7z.lua │ │ ├── find_appimagetool.lua │ │ ├── find_apt.lua │ │ ├── find_aqt.lua │ │ ├── find_ar.lua │ │ ├── find_ar2000.lua │ │ ├── find_ar6x.lua │ │ ├── find_armar.lua │ │ ├── find_armasm.lua │ │ ├── find_armasm64_msvc.lua │ │ ├── find_armasm_msvc.lua │ │ ├── find_armcc.lua │ │ ├── find_armclang.lua │ │ ├── find_armlink.lua │ │ ├── find_asm6x.lua │ │ ├── find_asn1c.lua │ │ ├── find_bash.lua │ │ ├── find_bazel.lua │ │ ├── find_bison.lua │ │ ├── find_bl51.lua │ │ ├── find_brew.lua │ │ ├── find_bzip2.lua │ │ ├── find_c51.lua │ │ ├── find_cargo.lua │ │ ├── find_cc.lua │ │ ├── find_ccache.lua │ │ ├── find_circle.lua │ │ ├── find_cl.lua │ │ ├── find_cl2000.lua │ │ ├── find_cl6x.lua │ │ ├── find_clang.lua │ │ ├── find_clang_cl.lua │ │ ├── find_clang_format.lua │ │ ├── find_clang_scan_deps.lua │ │ ├── find_clang_tidy.lua │ │ ├── find_clangxx.lua │ │ ├── find_clib.lua │ │ ├── find_cmake.lua │ │ ├── find_codesign.lua │ │ ├── find_conan.lua │ │ ├── find_conda.lua │ │ ├── find_cosmoar.lua │ │ ├── find_cosmocc.lua │ │ ├── find_cosmocxx.lua │ │ ├── find_cparser.lua │ │ ├── find_cpp.lua │ │ ├── find_cudagdb.lua │ │ ├── find_cudamemcheck.lua │ │ ├── find_curl.lua │ │ ├── find_cxx.lua │ │ ├── find_cxxbridge.lua │ │ ├── find_debuild.lua │ │ ├── find_devenv.lua │ │ ├── find_dmd.lua │ │ ├── find_doxygen.lua │ │ ├── find_dpcpp.lua │ │ ├── find_dsymutil.lua │ │ ├── find_dub.lua │ │ ├── find_dumpbin.lua │ │ ├── find_dxc.lua │ │ ├── find_emar.lua │ │ ├── find_emcc.lua │ │ ├── find_emxx.lua │ │ ├── find_fasm.lua │ │ ├── find_flang.lua │ │ ├── find_flex.lua │ │ ├── find_fpc.lua │ │ ├── find_gcc.lua │ │ ├── find_gcc_ar.lua │ │ ├── find_gccgo.lua │ │ ├── find_gdb.lua │ │ ├── find_gdc.lua │ │ ├── find_gfortran.lua │ │ ├── find_git.lua │ │ ├── find_glslangValidator.lua │ │ ├── find_glslc.lua │ │ ├── find_gn.lua │ │ ├── find_go.lua │ │ ├── find_gxx.lua │ │ ├── find_gzip.lua │ │ ├── find_hdiutil.lua │ │ ├── find_iarchive.lua │ │ ├── find_iasmarm.lua │ │ ├── find_icc.lua │ │ ├── find_iccarm.lua │ │ ├── find_icl.lua │ │ ├── find_icpc.lua │ │ ├── find_icpx.lua │ │ ├── find_icx.lua │ │ ├── find_ideviceinstaller.lua │ │ ├── find_ifort.lua │ │ ├── find_ifx.lua │ │ ├── find_ilinkarm.lua │ │ ├── find_iverilog.lua │ │ ├── find_java.lua │ │ ├── find_jom.lua │ │ ├── find_kotlinc_native.lua │ │ ├── find_ld.lua │ │ ├── find_ld64_lld.lua │ │ ├── find_ld_lld.lua │ │ ├── find_ldc2.lua │ │ ├── find_lex.lua │ │ ├── find_lib.lua │ │ ├── find_link.lua │ │ ├── find_lipo.lua │ │ ├── find_lld_link.lua │ │ ├── find_lldb.lua │ │ ├── find_llvm_ar.lua │ │ ├── find_llvm_as.lua │ │ ├── find_llvm_dlltool.lua │ │ ├── find_llvm_rc.lua │ │ ├── find_lua.lua │ │ ├── find_luajit.lua │ │ ├── find_make.lua │ │ ├── find_meson.lua │ │ ├── find_metal.lua │ │ ├── find_metallib.lua │ │ ├── find_midl.lua │ │ ├── find_ml.lua │ │ ├── find_ml64.lua │ │ ├── find_mold.lua │ │ ├── find_msbuild.lua │ │ ├── find_nasm.lua │ │ ├── find_nim.lua │ │ ├── find_nimble.lua │ │ ├── find_ninja.lua │ │ ├── find_nix.lua │ │ ├── find_nmake.lua │ │ ├── find_nmap.lua │ │ ├── find_nvc.lua │ │ ├── find_nvcc.lua │ │ ├── find_nvcxx.lua │ │ ├── find_nvfortran.lua │ │ ├── find_objcopy.lua │ │ ├── find_oh51.lua │ │ ├── find_ollydbg.lua │ │ ├── find_pacman.lua │ │ ├── find_patch.lua │ │ ├── find_perl.lua │ │ ├── find_ping.lua │ │ ├── find_pkg_config.lua │ │ ├── find_pkgconf.lua │ │ ├── find_powershell.lua │ │ ├── find_pwsh.lua │ │ ├── find_python.lua │ │ ├── find_python2.lua │ │ ├── find_python3.lua │ │ ├── find_qmake.lua │ │ ├── find_raddbg.lua │ │ ├── find_ranlib.lua │ │ ├── find_rc.lua │ │ ├── find_renderdoc.lua │ │ ├── find_rpm.lua │ │ ├── find_rustc.lua │ │ ├── find_scons.lua │ │ ├── find_sdar.lua │ │ ├── find_sdcc.lua │ │ ├── find_strip.lua │ │ ├── find_sudo.lua │ │ ├── find_swift_frontend.lua │ │ ├── find_swiftc.lua │ │ ├── find_swig.lua │ │ ├── find_tar.lua │ │ ├── find_tcc.lua │ │ ├── find_tclsh.lua │ │ ├── find_unzip.lua │ │ ├── find_valac.lua │ │ ├── find_vcpkg.lua │ │ ├── find_verilator.lua │ │ ├── find_vsjitdebugger.lua │ │ ├── find_vswhere.lua │ │ ├── find_vvp.lua │ │ ├── find_wasm_ld.lua │ │ ├── find_wget.lua │ │ ├── find_where.lua │ │ ├── find_windbg.lua │ │ ├── find_windres.lua │ │ ├── find_wine.lua │ │ ├── find_x64dbg.lua │ │ ├── find_xrepo.lua │ │ ├── find_xz.lua │ │ ├── find_yacc.lua │ │ ├── find_yasm.lua │ │ ├── find_yum.lua │ │ ├── find_zig.lua │ │ ├── find_zig_cc.lua │ │ ├── find_zig_cxx.lua │ │ ├── find_zip.lua │ │ ├── find_zstd.lua │ │ └── find_zypper.lua ├── devel │ ├── debugger │ │ └── run.lua │ └── git │ │ ├── apply.lua │ │ ├── asgiturl.lua │ │ ├── branch.lua │ │ ├── branches.lua │ │ ├── checkout.lua │ │ ├── checkurl.lua │ │ ├── clean.lua │ │ ├── clone.lua │ │ ├── init.lua │ │ ├── lastcommit.lua │ │ ├── ls_remote.lua │ │ ├── pull.lua │ │ ├── push.lua │ │ ├── refs.lua │ │ ├── remote.lua │ │ ├── reset.lua │ │ ├── submodule │ │ ├── clean.lua │ │ ├── reset.lua │ │ └── update.lua │ │ ├── support.lua │ │ └── tags.lua ├── lib │ └── detect │ │ ├── check_bigendian.lua │ │ ├── check_csnippets.lua │ │ ├── check_cxsnippets.lua │ │ ├── check_cxxsnippets.lua │ │ ├── check_fcsnippets.lua │ │ ├── check_importfiles.lua │ │ ├── check_msnippets.lua │ │ ├── check_mxxsnippets.lua │ │ ├── check_sizeof.lua │ │ ├── features.lua │ │ ├── find_cudadevices.lua │ │ ├── find_package.lua │ │ ├── find_tool.lua │ │ ├── find_toolname.lua │ │ ├── has_cfuncs.lua │ │ ├── has_cincludes.lua │ │ ├── has_ctypes.lua │ │ ├── has_cxxfuncs.lua │ │ ├── has_cxxincludes.lua │ │ ├── has_cxxtypes.lua │ │ ├── has_features.lua │ │ ├── has_flags.lua │ │ └── pkgconfig.lua ├── net │ ├── fasturl.lua │ ├── http │ │ └── download.lua │ ├── ping.lua │ └── proxy.lua ├── os │ └── winver.lua ├── package │ ├── manager │ │ ├── apt │ │ │ ├── find_package.lua │ │ │ ├── install_package.lua │ │ │ └── search_package.lua │ │ ├── brew │ │ │ ├── find_package.lua │ │ │ └── install_package.lua │ │ ├── cargo │ │ │ ├── configurations.lua │ │ │ ├── find_package.lua │ │ │ └── install_package.lua │ │ ├── clib │ │ │ ├── configurations.lua │ │ │ ├── find_package.lua │ │ │ └── install_package.lua │ │ ├── cmake │ │ │ ├── configurations.lua │ │ │ └── find_package.lua │ │ ├── conan │ │ │ ├── configurations.lua │ │ │ ├── find_package.lua │ │ │ ├── install_package.lua │ │ │ ├── search_package.lua │ │ │ ├── v1 │ │ │ │ └── install_package.lua │ │ │ └── v2 │ │ │ │ └── install_package.lua │ │ ├── conda │ │ │ ├── find_package.lua │ │ │ ├── install_package.lua │ │ │ └── search_package.lua │ │ ├── dub │ │ │ ├── find_package.lua │ │ │ └── install_package.lua │ │ ├── find_package.lua │ │ ├── install_package.lua │ │ ├── kotlin-native │ │ │ ├── configurations.lua │ │ │ ├── find_package.lua │ │ │ └── install_package.lua │ │ ├── nimble │ │ │ ├── find_package.lua │ │ │ └── install_package.lua │ │ ├── nix │ │ │ ├── find_package.lua │ │ │ ├── install_package.lua │ │ │ └── search_package.lua │ │ ├── nuget │ │ │ ├── find_package.lua │ │ │ └── install_package.lua │ │ ├── pacman │ │ │ ├── configurations.lua │ │ │ ├── find_package.lua │ │ │ ├── get_package_name.lua │ │ │ └── install_package.lua │ │ ├── pkgconfig │ │ │ └── find_package.lua │ │ ├── portage │ │ │ ├── find_package.lua │ │ │ └── install_package.lua │ │ ├── system │ │ │ └── find_package.lua │ │ ├── vcpkg │ │ │ ├── configurations.lua │ │ │ ├── find_package.lua │ │ │ ├── install_package.lua │ │ │ └── search_package.lua │ │ ├── xmake │ │ │ ├── find_package.lua │ │ │ └── search_package.lua │ │ ├── yum │ │ │ └── install_package.lua │ │ └── zypper │ │ │ ├── find_package.lua │ │ │ ├── install_package.lua │ │ │ └── search_package.lua │ └── tools │ │ ├── autoconf.lua │ │ ├── bazel.lua │ │ ├── cmake.lua │ │ ├── gn.lua │ │ ├── jom.lua │ │ ├── make.lua │ │ ├── meson.lua │ │ ├── msbuild.lua │ │ ├── ninja.lua │ │ ├── nmake.lua │ │ ├── scons.lua │ │ └── xmake.lua ├── private │ ├── action │ │ ├── build │ │ │ ├── build_binary.lua │ │ │ ├── build_moduleonly.lua │ │ │ ├── build_object.lua │ │ │ ├── build_shared.lua │ │ │ ├── build_static.lua │ │ │ ├── link_objects.lua │ │ │ ├── object.lua │ │ │ ├── pcheader.lua │ │ │ ├── prepare_files.lua │ │ │ └── target.lua │ │ ├── clean │ │ │ └── remove_files.lua │ │ ├── require │ │ │ ├── check.lua │ │ │ ├── clean.lua │ │ │ ├── download.lua │ │ │ ├── export.lua │ │ │ ├── fetch.lua │ │ │ ├── impl │ │ │ │ ├── actions │ │ │ │ │ ├── check.lua │ │ │ │ │ ├── download.lua │ │ │ │ │ ├── download_resources.lua │ │ │ │ │ ├── install.lua │ │ │ │ │ ├── patch_sources.lua │ │ │ │ │ └── test.lua │ │ │ │ ├── check_api.lua │ │ │ │ ├── download_packages.lua │ │ │ │ ├── environment.lua │ │ │ │ ├── export_packages.lua │ │ │ │ ├── import_packages.lua │ │ │ │ ├── install_packages.lua │ │ │ │ ├── lock_packages.lua │ │ │ │ ├── package.lua │ │ │ │ ├── packagenv.lua │ │ │ │ ├── register_packages.lua │ │ │ │ ├── remove_packages.lua │ │ │ │ ├── repository.lua │ │ │ │ ├── search_packages.lua │ │ │ │ ├── uninstall_packages.lua │ │ │ │ └── utils │ │ │ │ │ ├── filter.lua │ │ │ │ │ ├── get_requires.lua │ │ │ │ │ ├── requirekey.lua │ │ │ │ │ └── url_filename.lua │ │ │ ├── import.lua │ │ │ ├── info.lua │ │ │ ├── install.lua │ │ │ ├── list.lua │ │ │ ├── register.lua │ │ │ ├── scan.lua │ │ │ ├── search.lua │ │ │ └── uninstall.lua │ │ ├── run │ │ │ └── runenvs.lua │ │ ├── trybuild │ │ │ ├── autoconf.lua │ │ │ ├── bazel.lua │ │ │ ├── cmake.lua │ │ │ ├── make.lua │ │ │ ├── meson.lua │ │ │ ├── msbuild.lua │ │ │ ├── ndkbuild.lua │ │ │ ├── ninja.lua │ │ │ ├── scons.lua │ │ │ ├── xcodebuild.lua │ │ │ └── xrepo.lua │ │ ├── update │ │ │ └── fetch_version.lua │ │ └── utils.lua │ ├── async │ │ ├── buildjobs.lua │ │ ├── jobpool.lua │ │ └── runjobs.lua │ ├── cache │ │ └── build_cache.lua │ ├── check │ │ ├── checker.lua │ │ ├── checkers │ │ │ ├── api │ │ │ │ ├── api_checker.lua │ │ │ │ ├── package │ │ │ │ │ ├── kind.lua │ │ │ │ │ └── versionfiles.lua │ │ │ │ └── target │ │ │ │ │ ├── asflags.lua │ │ │ │ │ ├── cflags.lua │ │ │ │ │ ├── configfiles.lua │ │ │ │ │ ├── cxflags.lua │ │ │ │ │ ├── cxxflags.lua │ │ │ │ │ ├── encodings.lua │ │ │ │ │ ├── exceptions.lua │ │ │ │ │ ├── files.lua │ │ │ │ │ ├── fpmodels.lua │ │ │ │ │ ├── frameworkdirs.lua │ │ │ │ │ ├── headerfiles.lua │ │ │ │ │ ├── includedirs.lua │ │ │ │ │ ├── installfiles.lua │ │ │ │ │ ├── kind.lua │ │ │ │ │ ├── languages.lua │ │ │ │ │ ├── ldflags.lua │ │ │ │ │ ├── license.lua │ │ │ │ │ ├── linkdirs.lua │ │ │ │ │ ├── optimize.lua │ │ │ │ │ ├── packages.lua │ │ │ │ │ ├── shflags.lua │ │ │ │ │ ├── strip.lua │ │ │ │ │ ├── symbols.lua │ │ │ │ │ ├── vectorexts.lua │ │ │ │ │ ├── version.lua │ │ │ │ │ └── warnings.lua │ │ │ ├── clang │ │ │ │ └── tidy.lua │ │ │ ├── cuda │ │ │ │ └── devlink.lua │ │ │ └── syntax.lua │ │ └── show.lua │ ├── detect │ │ ├── check_targetname.lua │ │ ├── find_cudatool.lua │ │ ├── find_platform.lua │ │ └── find_similar_targetnames.lua │ ├── service │ │ ├── add_user.lua │ │ ├── clean_files.lua │ │ ├── client.lua │ │ ├── client_config.lua │ │ ├── connect_service.lua │ │ ├── disconnect_service.lua │ │ ├── distcc_build │ │ │ ├── client.lua │ │ │ ├── client_session.lua │ │ │ ├── server.lua │ │ │ └── server_session.lua │ │ ├── gen_token.lua │ │ ├── message.lua │ │ ├── pull_files.lua │ │ ├── reconnect_service.lua │ │ ├── remote_build │ │ │ ├── action.lua │ │ │ ├── client.lua │ │ │ ├── filesync.lua │ │ │ ├── server.lua │ │ │ └── server_session.lua │ │ ├── remote_cache │ │ │ ├── client.lua │ │ │ ├── server.lua │ │ │ └── server_session.lua │ │ ├── restart_service.lua │ │ ├── rm_user.lua │ │ ├── server.lua │ │ ├── server_config.lua │ │ ├── service.lua │ │ ├── show_logs.lua │ │ ├── show_status.lua │ │ ├── start_service.lua │ │ ├── stop_service.lua │ │ ├── stream.lua │ │ └── sync_files.lua │ ├── tools │ │ ├── ccache.lua │ │ ├── codesign.lua │ │ ├── go │ │ │ └── goenv.lua │ │ ├── rust │ │ │ └── check_target.lua │ │ └── vstool.lua │ ├── utils │ │ ├── batchcmds.lua │ │ ├── bcsave.lua │ │ ├── complete.lua │ │ ├── complete_helper.lua │ │ ├── completer.lua │ │ ├── executable_path.lua │ │ ├── package.lua │ │ ├── rule.lua │ │ ├── statistics.lua │ │ ├── target.lua │ │ ├── toolchain.lua │ │ ├── trim_trailing_spaces.lua │ │ └── upgrade_vsproj.lua │ └── xrepo │ │ ├── action │ │ ├── add-repo.lua │ │ ├── clean.lua │ │ ├── download.lua │ │ ├── env.lua │ │ ├── export.lua │ │ ├── fetch.lua │ │ ├── import.lua │ │ ├── info.lua │ │ ├── install.lua │ │ ├── list-repo.lua │ │ ├── remove.lua │ │ ├── rm-repo.lua │ │ ├── scan.lua │ │ ├── search.lua │ │ └── update-repo.lua │ │ ├── complete.lua │ │ ├── main.lua │ │ └── quick_search │ │ ├── cache.lua │ │ └── completion.lua ├── privilege │ └── sudo.lua ├── target │ └── action │ │ ├── clean │ │ └── main.lua │ │ ├── install │ │ ├── cmake_importfiles.lua │ │ ├── main.lua │ │ └── pkgconfig_importfiles.lua │ │ └── uninstall │ │ └── main.lua ├── ui │ └── app │ │ ├── showfile.lua │ │ └── version.lua └── utils │ ├── archive │ ├── archive.lua │ ├── archive_xmz.lua │ ├── extension.lua │ ├── extract.lua │ ├── extract_xmz.lua │ └── merge_staticlib.lua │ ├── binary │ ├── bin2c.lua │ ├── bin2obj.lua │ ├── deplibs.lua │ ├── readsyms.lua │ └── rpath.lua │ ├── ci │ ├── is_running.lua │ └── packageskey.lua │ ├── ipa │ ├── install.lua │ ├── package.lua │ └── resign.lua │ ├── platform │ └── gnu2mslib.lua │ ├── progress.lua │ ├── run_script.lua │ ├── waiting_indicator.lua │ └── wdk │ └── testcert.lua ├── platforms ├── android │ └── xmake.lua ├── appletvos │ └── xmake.lua ├── applexros │ └── xmake.lua ├── bsd │ └── xmake.lua ├── cross │ └── xmake.lua ├── cygwin │ └── xmake.lua ├── haiku │ └── xmake.lua ├── harmony │ └── xmake.lua ├── iphoneos │ └── xmake.lua ├── linux │ └── xmake.lua ├── macosx │ └── xmake.lua ├── mingw │ └── xmake.lua ├── msys │ └── xmake.lua ├── solaris │ └── xmake.lua ├── wasm │ └── xmake.lua ├── watchos │ └── xmake.lua └── windows │ └── xmake.lua ├── plugins ├── check │ ├── main.lua │ └── xmake.lua ├── doxygen │ ├── main.lua │ └── xmake.lua ├── format │ ├── main.lua │ └── xmake.lua ├── lua │ ├── main.lua │ ├── scripts │ │ ├── cat.lua │ │ ├── cp.lua │ │ ├── echo.lua │ │ ├── lipo.lua │ │ ├── mkdir.lua │ │ ├── mv.lua │ │ ├── rm.lua │ │ ├── rmdir.lua │ │ └── time.lua │ └── xmake.lua ├── macro │ ├── macros │ │ └── package.lua │ ├── main.lua │ └── xmake.lua ├── pack │ ├── appimage │ │ └── main.lua │ ├── archive.lua │ ├── batchcmds.lua │ ├── deb │ │ └── main.lua │ ├── dmg │ │ └── main.lua │ ├── filter.lua │ ├── main.lua │ ├── nsis │ │ └── main.lua │ ├── rpm │ │ └── main.lua │ ├── runself │ │ └── main.lua │ ├── srctargz │ │ └── main.lua │ ├── srczip │ │ └── main.lua │ ├── srpm │ │ └── main.lua │ ├── targz │ │ └── main.lua │ ├── wix │ │ └── main.lua │ ├── xmake.lua │ ├── xpack.lua │ ├── xpack_component.lua │ └── zip │ │ └── main.lua ├── plugin │ ├── main.lua │ └── xmake.lua ├── project │ ├── clang │ │ ├── compile_commands.lua │ │ └── compile_flags.lua │ ├── cmake │ │ └── cmakelists.lua │ ├── main.lua │ ├── make │ │ ├── makefile.lua │ │ └── xmakefile.lua │ ├── ninja │ │ └── build_ninja.lua │ ├── utils │ │ └── target_cmds.lua │ ├── vstudio │ │ ├── impl │ │ │ ├── vs200x.lua │ │ │ ├── vs200x_solution.lua │ │ │ ├── vs200x_vcproj.lua │ │ │ ├── vs201x.lua │ │ │ ├── vs201x_solution.lua │ │ │ ├── vs201x_vcxproj.lua │ │ │ ├── vs201x_vcxproj_filters.lua │ │ │ ├── vsfile.lua │ │ │ ├── vsinfo.lua │ │ │ └── vsutils.lua │ │ └── vs.lua │ ├── vsxmake │ │ ├── getinfo.lua │ │ ├── render.lua │ │ └── vsxmake.lua │ ├── xcode │ │ ├── get_xcode_info.lua │ │ ├── pbxproj.lua │ │ └── xcodeproj.lua │ └── xmake.lua ├── repo │ ├── main.lua │ └── xmake.lua ├── show │ ├── info │ │ ├── basic.lua │ │ └── target.lua │ ├── list.lua │ ├── lists │ │ ├── apis.lua │ │ ├── architectures.lua │ │ ├── buildmodes.lua │ │ ├── envs.lua │ │ ├── packages.lua │ │ ├── platforms.lua │ │ ├── policies.lua │ │ ├── rules.lua │ │ ├── targets.lua │ │ ├── themes.lua │ │ └── toolchains.lua │ ├── main.lua │ ├── showlist.lua │ └── xmake.lua └── watch │ ├── main.lua │ └── xmake.lua ├── repository └── packages │ ├── 7 │ └── 7z │ │ ├── patches │ │ └── 21.02 │ │ │ └── backport-21.03-fix-for-GCC-10.patch │ │ └── xmake.lua │ └── g │ └── git │ └── xmake.lua ├── rules ├── asm │ └── xmake.lua ├── asn1c │ └── xmake.lua ├── c++ │ ├── config │ │ ├── basic.lua │ │ ├── dynamic_debugging.lua │ │ ├── main.lua │ │ ├── optimization.lua │ │ └── sanitizer.lua │ ├── modules │ │ ├── builder.lua │ │ ├── clang │ │ │ ├── builder.lua │ │ │ ├── scanner.lua │ │ │ └── support.lua │ │ ├── config.lua │ │ ├── gcc │ │ │ ├── builder.lua │ │ │ ├── scanner.lua │ │ │ └── support.lua │ │ ├── install.lua │ │ ├── mapper.lua │ │ ├── msvc │ │ │ ├── builder.lua │ │ │ ├── scanner.lua │ │ │ └── support.lua │ │ ├── scanner.lua │ │ ├── stlheaders.lua │ │ ├── support.lua │ │ └── xmake.lua │ ├── openmp │ │ ├── load.lua │ │ └── xmake.lua │ ├── precompiled_header │ │ └── xmake.lua │ ├── unity_build │ │ ├── unity_build.lua │ │ └── xmake.lua │ └── xmake.lua ├── c51 │ └── xmake.lua ├── capnproto │ ├── capnp.lua │ └── xmake.lua ├── cppfront │ └── xmake.lua ├── cuda │ ├── devlink │ │ ├── devlink.lua │ │ └── xmake.lua │ ├── env │ │ └── xmake.lua │ ├── gencodes │ │ └── xmake.lua │ └── xmake.lua ├── dlang │ ├── build_optimization │ │ ├── config.lua │ │ └── xmake.lua │ └── xmake.lua ├── fortran │ └── xmake.lua ├── gnu-rm │ └── xmake.lua ├── go │ ├── build │ │ └── target.lua │ └── xmake.lua ├── iverilog │ └── xmake.lua ├── kotlin-native │ ├── build │ │ └── target.lua │ └── xmake.lua ├── lex_yacc │ ├── lex │ │ └── xmake.lua │ └── yacc │ │ └── xmake.lua ├── linker │ ├── link_scripts │ │ └── xmake.lua │ ├── soname │ │ └── xmake.lua │ ├── version_scripts │ │ └── xmake.lua │ └── xmake.lua ├── lua │ ├── module │ │ └── xmake.lua │ └── native-objects │ │ └── xmake.lua ├── luarocks │ └── module │ │ └── xmake.lua ├── mdk │ └── xmake.lua ├── mode │ └── xmake.lua ├── module │ └── xmake.lua ├── nim │ ├── build │ │ └── target.lua │ └── xmake.lua ├── nodejs │ └── module │ │ └── xmake.lua ├── objc++ │ ├── config │ │ ├── basic.lua │ │ └── main.lua │ ├── precompiled_header │ │ └── xmake.lua │ └── xmake.lua ├── pascal │ ├── build │ │ └── target.lua │ └── xmake.lua ├── platform │ ├── linux │ │ ├── bpf │ │ │ └── xmake.lua │ │ ├── driver │ │ │ └── xmake.lua │ │ └── module │ │ │ ├── driver_modules.lua │ │ │ └── xmake.lua │ ├── wasm │ │ ├── installfiles │ │ │ └── xmake.lua │ │ └── preloadfiles │ │ │ └── xmake.lua │ ├── windows │ │ ├── def │ │ │ └── xmake.lua │ │ ├── idl │ │ │ ├── idl.lua │ │ │ └── xmake.lua │ │ ├── manifest │ │ │ └── xmake.lua │ │ └── subsystem │ │ │ └── xmake.lua │ └── xmake.lua ├── plugin │ ├── compile_commands │ │ └── xmake.lua │ └── vsxmake │ │ └── xmake.lua ├── protobuf │ ├── proto.lua │ └── xmake.lua ├── python │ ├── cython │ │ └── xmake.lua │ ├── library │ │ └── xmake.lua │ └── module │ │ └── xmake.lua ├── qt │ ├── config_static.lua │ ├── deploy │ │ ├── android.lua │ │ └── macosx.lua │ ├── env │ │ └── xmake.lua │ ├── install │ │ ├── android.lua │ │ ├── mingw.lua │ │ ├── windeployqt.lua │ │ └── windows.lua │ ├── installcmd.lua │ ├── load.lua │ ├── moc │ │ └── xmake.lua │ ├── qmltyperegistrar │ │ └── xmake.lua │ ├── qrc │ │ └── xmake.lua │ ├── ts │ │ └── xmake.lua │ ├── ui │ │ └── xmake.lua │ ├── uninstallcmd.lua │ └── xmake.lua ├── rust │ ├── build │ │ ├── cxxbridge.lua │ │ └── target.lua │ └── xmake.lua ├── swift │ └── xmake.lua ├── swig │ ├── build_module_file.lua │ └── xmake.lua ├── utils │ ├── bin2c │ │ ├── utils.lua │ │ └── xmake.lua │ ├── bin2obj │ │ ├── utils.lua │ │ └── xmake.lua │ ├── compiler_runtime │ │ └── xmake.lua │ ├── glsl2spv │ │ └── xmake.lua │ ├── hlsl2spv │ │ └── xmake.lua │ ├── inherit_links │ │ ├── inherit_links.lua │ │ └── xmake.lua │ ├── install_importfiles │ │ └── xmake.lua │ ├── ispc │ │ └── xmake.lua │ ├── merge_archive │ │ └── xmake.lua │ ├── merge_object │ │ └── xmake.lua │ └── symbols │ │ ├── export_all │ │ ├── export_all.lua │ │ └── xmake.lua │ │ ├── export_list │ │ └── xmake.lua │ │ └── extract │ │ └── xmake.lua ├── vala │ └── xmake.lua ├── verilator │ ├── verilator.lua │ └── xmake.lua ├── wdk │ ├── env │ │ ├── load.lua │ │ └── xmake.lua │ ├── inf │ │ └── xmake.lua │ ├── load.lua │ ├── man │ │ └── xmake.lua │ ├── mc │ │ └── xmake.lua │ ├── mof │ │ └── xmake.lua │ ├── package │ │ └── xmake.lua │ ├── sign │ │ ├── sign.lua │ │ └── xmake.lua │ ├── tracewpp │ │ └── xmake.lua │ └── xmake.lua ├── winsdk │ ├── dotnet │ │ └── xmake.lua │ ├── mfc │ │ ├── env │ │ │ └── xmake.lua │ │ ├── mfc.lua │ │ └── xmake.lua │ └── xmake.lua ├── xcode │ ├── application │ │ ├── build.lua │ │ ├── install.lua │ │ ├── installcmd.lua │ │ ├── load.lua │ │ ├── package.lua │ │ ├── run.lua │ │ ├── uninstall.lua │ │ └── xmake.lua │ ├── bundle │ │ └── xmake.lua │ ├── framework │ │ └── xmake.lua │ ├── info_plist │ │ └── xmake.lua │ ├── metal │ │ └── xmake.lua │ ├── storyboard │ │ └── xmake.lua │ └── xcassets │ │ └── xmake.lua ├── xmake_cli │ └── xmake.lua └── zig │ └── xmake.lua ├── scripts ├── PkgInfo ├── cmake_importfiles │ ├── xxxConfig.cmake │ ├── xxxConfigVersion.cmake │ ├── xxxTargets-debug.cmake │ ├── xxxTargets-release.cmake │ └── xxxTargets.cmake ├── completions │ ├── register-completions.bash │ ├── register-completions.fish │ └── register-completions.zsh ├── conan │ └── extensions │ │ └── generators │ │ └── xmake_generator.py ├── download.ps1 ├── faq.lua ├── find_cudadevices.cpp ├── gas-preprocessor.pl ├── gitignore ├── module │ ├── luawrap │ │ ├── lauxlib.h │ │ ├── lua.h │ │ └── luaconf.h │ └── xmi.h ├── patches │ └── libtool │ │ ├── 2.4.3.patch │ │ ├── 2.4.4.patch │ │ ├── 2.4.7.patch │ │ ├── 2.5.0.patch │ │ └── 2.6.0.patch ├── profile-unix.fish ├── profile-unix.sh ├── profile-win.ps1 ├── run.vbs ├── unzip.ps1 ├── update-script.bat ├── update-script.sh ├── virtualenvs │ └── register-virtualenvs.sh ├── vsxmake │ └── vsproj │ │ ├── Xmake.Defaults.props │ │ ├── Xmake.props │ │ ├── Xmake.targets │ │ ├── Xmake.xml │ │ └── templates │ │ ├── Xmake.Custom.items │ │ ├── Xmake.Custom.items.filters │ │ ├── Xmake.Custom.props │ │ ├── Xmake.Custom.targets │ │ ├── sln │ │ ├── ProjConfig(target,mode,arch) │ │ ├── Project(target) │ │ ├── ProjectGroup(group) │ │ ├── ProjectGroupConfig(group_dep) │ │ ├── SlnConfig(mode,arch) │ │ └── vsxmake.sln │ │ ├── vcxproj.filters │ │ ├── #target#.vcxproj.filters │ │ ├── File.c(filec) │ │ ├── File.cu(filecu) │ │ ├── File.cxx(filecxx) │ │ ├── File.mpp(filempp) │ │ ├── File.obj(fileobj) │ │ ├── File.qrc(fileqrc) │ │ ├── File.rc(filerc) │ │ ├── File.ts(filets) │ │ ├── File.ui(fileui) │ │ ├── Filter(dir) │ │ ├── Include.c(incc) │ │ └── Include.natvis(incnatvis) │ │ └── vcxproj │ │ ├── #target#.vcxproj │ │ ├── File.c(filec) │ │ ├── File.cu(filecu) │ │ ├── File.cxx(filecxx) │ │ ├── File.mpp(filempp) │ │ ├── File.obj(fileobj) │ │ ├── File.qrc(fileqrc) │ │ ├── File.rc(filerc) │ │ ├── File.ts(filets) │ │ ├── File.ui(fileui) │ │ ├── Include.c(incc) │ │ ├── Include.natvis(incnatvis) │ │ ├── ProjectConfiguration(mode,arch) │ │ ├── ProjectRef(dep) │ │ ├── XmakeConfig(mode,arch) │ │ └── XmakePath(mode,arch) ├── xpack │ ├── deb │ │ └── debian │ │ │ ├── README.Debian │ │ │ ├── changelog │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── rules │ │ │ └── source │ │ │ └── format │ ├── nsis │ │ └── makensis.nsi │ ├── runself │ │ ├── makeself.lsm │ │ └── setup.sh │ ├── srpm │ │ └── srpm.spec │ └── wix │ │ └── msi.wxs ├── xrepo-hook.psm1 └── xrepo │ └── envs │ ├── depot_tools.lua │ ├── devel.lua │ ├── llvm-mingw.lua │ ├── llvm.lua │ ├── mingw-w64.lua │ ├── msvc.lua │ ├── msys2-mingw32.lua │ ├── msys2-mingw64.lua │ ├── msys2.lua │ ├── python2.lua │ └── python3.lua ├── templates ├── c++ │ ├── console │ │ ├── project │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ └── xmake.lua │ │ └── template.lua │ ├── module.binary │ │ ├── .gitignore │ │ ├── project │ │ │ ├── modules │ │ │ │ └── binary │ │ │ │ │ └── bar │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── src │ │ │ │ │ ├── add.cpp │ │ │ │ │ └── sub.cpp │ │ │ │ │ └── xmake.lua │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ └── xmake.lua │ │ └── template.lua │ ├── module.shared │ │ ├── .gitignore │ │ ├── project │ │ │ ├── modules │ │ │ │ └── shared │ │ │ │ │ └── foo │ │ │ │ │ ├── src │ │ │ │ │ └── foo.cpp │ │ │ │ │ └── xmake.lua │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ └── xmake.lua │ │ └── template.lua │ ├── qt.console │ │ ├── project │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ └── xmake.lua │ │ └── template.lua │ ├── qt.quickapp │ │ ├── project │ │ │ ├── src │ │ │ │ ├── main.cpp │ │ │ │ ├── main.qml │ │ │ │ └── qml.qrc │ │ │ └── xmake.lua │ │ └── template.lua │ ├── qt.quickapp_static │ │ ├── project │ │ │ ├── src │ │ │ │ ├── main.cpp │ │ │ │ ├── main.qml │ │ │ │ └── qml.qrc │ │ │ └── xmake.lua │ │ └── template.lua │ ├── qt.shared │ │ ├── project │ │ │ ├── src │ │ │ │ ├── demo.cpp │ │ │ │ ├── demo.h │ │ │ │ └── demo_global.h │ │ │ └── xmake.lua │ │ └── template.lua │ ├── qt.static │ │ ├── project │ │ │ ├── src │ │ │ │ ├── demo.cpp │ │ │ │ └── demo.h │ │ │ └── xmake.lua │ │ └── template.lua │ ├── qt.widgetapp │ │ ├── project │ │ │ ├── src │ │ │ │ ├── main.cpp │ │ │ │ ├── mainwindow.cpp │ │ │ │ ├── mainwindow.h │ │ │ │ └── mainwindow.ui │ │ │ └── xmake.lua │ │ └── template.lua │ ├── qt.widgetapp_static │ │ ├── project │ │ │ ├── src │ │ │ │ ├── main.cpp │ │ │ │ ├── mainwindow.cpp │ │ │ │ ├── mainwindow.h │ │ │ │ └── mainwindow.ui │ │ │ └── xmake.lua │ │ └── template.lua │ ├── shared │ │ ├── project │ │ │ ├── src │ │ │ │ ├── foo.cpp │ │ │ │ ├── foo.h │ │ │ │ └── main.cpp │ │ │ └── xmake.lua │ │ └── template.lua │ ├── static │ │ ├── project │ │ │ ├── src │ │ │ │ ├── foo.cpp │ │ │ │ ├── foo.h │ │ │ │ └── main.cpp │ │ │ └── xmake.lua │ │ └── template.lua │ ├── tbox.console │ │ ├── project │ │ │ ├── src │ │ │ │ ├── main.cpp │ │ │ │ └── xmake.lua │ │ │ └── xmake.lua │ │ └── template.lua │ ├── tbox.shared │ │ ├── project │ │ │ ├── src │ │ │ │ ├── _demo │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── xmake.lua │ │ │ │ └── _library │ │ │ │ │ ├── interface.cpp │ │ │ │ │ ├── interface.h │ │ │ │ │ └── xmake.lua │ │ │ └── xmake.lua │ │ └── template.lua │ ├── tbox.static │ │ ├── project │ │ │ ├── src │ │ │ │ ├── _demo │ │ │ │ │ ├── main.cpp │ │ │ │ │ └── xmake.lua │ │ │ │ └── _library │ │ │ │ │ ├── interface.cpp │ │ │ │ │ ├── interface.h │ │ │ │ │ └── xmake.lua │ │ │ └── xmake.lua │ │ └── template.lua │ ├── wxwidgets │ │ ├── project │ │ │ ├── src │ │ │ │ └── main.cpp │ │ │ └── xmake.lua │ │ └── template.lua │ └── xmake.cli │ │ ├── project │ │ ├── src │ │ │ ├── lni │ │ │ │ └── main.cpp │ │ │ └── lua │ │ │ │ └── main.lua │ │ └── xmake.lua │ │ └── template.lua ├── c │ ├── console │ │ ├── project │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── xmake.lua │ │ └── template.lua │ ├── module.binary │ │ ├── .gitignore │ │ ├── project │ │ │ ├── modules │ │ │ │ └── binary │ │ │ │ │ └── bar │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── src │ │ │ │ │ ├── add.c │ │ │ │ │ └── sub.c │ │ │ │ │ └── xmake.lua │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── xmake.lua │ │ └── template.lua │ ├── module.shared │ │ ├── .gitignore │ │ ├── project │ │ │ ├── modules │ │ │ │ └── shared │ │ │ │ │ └── foo │ │ │ │ │ ├── src │ │ │ │ │ └── foo.c │ │ │ │ │ └── xmake.lua │ │ │ ├── src │ │ │ │ └── main.c │ │ │ └── xmake.lua │ │ └── template.lua │ ├── shared │ │ ├── project │ │ │ ├── src │ │ │ │ ├── foo.c │ │ │ │ ├── foo.h │ │ │ │ └── main.c │ │ │ └── xmake.lua │ │ └── template.lua │ ├── static │ │ ├── project │ │ │ ├── src │ │ │ │ ├── foo.c │ │ │ │ ├── foo.h │ │ │ │ └── main.c │ │ │ └── xmake.lua │ │ └── template.lua │ ├── tbox.console │ │ ├── project │ │ │ ├── src │ │ │ │ ├── main.c │ │ │ │ └── xmake.lua │ │ │ └── xmake.lua │ │ └── template.lua │ ├── tbox.shared │ │ ├── project │ │ │ ├── src │ │ │ │ ├── _demo │ │ │ │ │ ├── main.c │ │ │ │ │ └── xmake.lua │ │ │ │ └── _library │ │ │ │ │ ├── interface.c │ │ │ │ │ ├── interface.h │ │ │ │ │ └── xmake.lua │ │ │ └── xmake.lua │ │ └── template.lua │ ├── tbox.static │ │ ├── project │ │ │ ├── src │ │ │ │ ├── _demo │ │ │ │ │ ├── main.c │ │ │ │ │ └── xmake.lua │ │ │ │ └── _library │ │ │ │ │ ├── interface.c │ │ │ │ │ ├── interface.h │ │ │ │ │ └── xmake.lua │ │ │ └── xmake.lua │ │ └── template.lua │ └── xmake.cli │ │ ├── project │ │ ├── src │ │ │ ├── lni │ │ │ │ └── main.c │ │ │ └── lua │ │ │ │ └── main.lua │ │ └── xmake.lua │ │ └── template.lua ├── cuda │ ├── console │ │ ├── project │ │ │ ├── src │ │ │ │ └── main.cu │ │ │ └── xmake.lua │ │ └── template.lua │ ├── shared │ │ ├── project │ │ │ ├── inc │ │ │ │ └── lib.cuh │ │ │ ├── src │ │ │ │ └── lib.cu │ │ │ └── xmake.lua │ │ └── template.lua │ └── static │ │ ├── project │ │ ├── inc │ │ │ └── lib.cuh │ │ ├── src │ │ │ └── lib.cu │ │ └── xmake.lua │ │ └── template.lua ├── dlang │ ├── console │ │ ├── project │ │ │ ├── src │ │ │ │ └── main.d │ │ │ └── xmake.lua │ │ └── template.lua │ ├── shared │ │ ├── project │ │ │ ├── src │ │ │ │ ├── interfaces.d │ │ │ │ └── main.d │ │ │ └── xmake.lua │ │ └── template.lua │ └── static │ │ ├── project │ │ ├── src │ │ │ ├── interfaces.d │ │ │ └── main.d │ │ └── xmake.lua │ │ └── template.lua ├── fortran │ ├── console │ │ ├── project │ │ │ ├── src │ │ │ │ └── main.f90 │ │ │ └── xmake.lua │ │ └── template.lua │ ├── shared │ │ ├── project │ │ │ ├── src │ │ │ │ ├── main.f90 │ │ │ │ └── test.f90 │ │ │ └── xmake.lua │ │ └── template.lua │ └── static │ │ ├── project │ │ ├── src │ │ │ ├── main.f90 │ │ │ └── test.f90 │ │ └── xmake.lua │ │ └── template.lua ├── go │ ├── console │ │ ├── project │ │ │ ├── src │ │ │ │ └── main.go │ │ │ └── xmake.lua │ │ └── template.lua │ └── static │ │ ├── project │ │ ├── src │ │ │ ├── main.go │ │ │ ├── module │ │ │ │ ├── add.go │ │ │ │ └── sub.go │ │ │ └── test.go │ │ └── xmake.lua │ │ └── template.lua ├── kotlin │ ├── console │ │ ├── project │ │ │ ├── src │ │ │ │ └── main.kt │ │ │ └── xmake.lua │ │ └── template.lua │ ├── shared_library │ │ ├── project │ │ │ ├── src │ │ │ │ ├── foo.kt │ │ │ │ └── main.c │ │ │ └── xmake.lua │ │ └── template.lua │ └── static_library │ │ ├── project │ │ ├── src │ │ │ ├── foo.kt │ │ │ └── main.c │ │ └── xmake.lua │ │ └── template.lua ├── nim │ ├── console │ │ ├── project │ │ │ ├── src │ │ │ │ └── main.nim │ │ │ └── xmake.lua │ │ └── template.lua │ ├── shared │ │ ├── project │ │ │ ├── src │ │ │ │ ├── foo.nim │ │ │ │ └── main.nim │ │ │ └── xmake.lua │ │ └── template.lua │ └── static │ │ ├── project │ │ ├── src │ │ │ ├── foo.nim │ │ │ └── main.nim │ │ └── xmake.lua │ │ └── template.lua ├── objc++ │ ├── bundle │ │ ├── project │ │ │ ├── src │ │ │ │ ├── Info.plist │ │ │ │ ├── test.h │ │ │ │ └── test.mm │ │ │ └── xmake.lua │ │ └── template.lua │ ├── console │ │ ├── project │ │ │ ├── src │ │ │ │ └── main.mm │ │ │ └── xmake.lua │ │ └── template.lua │ └── framework │ │ ├── project │ │ ├── src │ │ │ ├── Info.plist │ │ │ ├── test.h │ │ │ └── test.mm │ │ └── xmake.lua │ │ └── template.lua ├── objc │ ├── bundle │ │ ├── project │ │ │ ├── src │ │ │ │ ├── Info.plist │ │ │ │ ├── test.h │ │ │ │ └── test.m │ │ │ └── xmake.lua │ │ └── template.lua │ ├── console │ │ ├── project │ │ │ ├── src │ │ │ │ └── main.m │ │ │ └── xmake.lua │ │ └── template.lua │ ├── framework │ │ ├── project │ │ │ ├── src │ │ │ │ ├── Info.plist │ │ │ │ ├── test.h │ │ │ │ └── test.m │ │ │ └── xmake.lua │ │ └── template.lua │ ├── iosapp │ │ ├── project │ │ │ ├── src │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ ├── SceneDelegate.h │ │ │ │ ├── SceneDelegate.m │ │ │ │ ├── ViewController.h │ │ │ │ ├── ViewController.m │ │ │ │ └── main.m │ │ │ └── xmake.lua │ │ └── template.lua │ ├── iosapp_with_framework │ │ ├── project │ │ │ ├── src │ │ │ │ ├── app │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ ├── Assets.xcassets │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ │ │ └── Main.storyboard │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── SceneDelegate.h │ │ │ │ │ ├── SceneDelegate.m │ │ │ │ │ ├── ViewController.h │ │ │ │ │ ├── ViewController.m │ │ │ │ │ └── main.m │ │ │ │ └── framework │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── test.h │ │ │ │ │ └── test.m │ │ │ └── xmake.lua │ │ └── template.lua │ ├── macapp │ │ ├── project │ │ │ ├── src │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ ├── ViewController.h │ │ │ │ ├── ViewController.m │ │ │ │ ├── main.m │ │ │ │ └── test.entitlements │ │ │ └── xmake.lua │ │ └── template.lua │ └── macapp_with_framework │ │ ├── project │ │ ├── src │ │ │ ├── app │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Info.plist │ │ │ │ ├── ViewController.h │ │ │ │ ├── ViewController.m │ │ │ │ ├── main.m │ │ │ │ └── test.entitlements │ │ │ └── framework │ │ │ │ ├── Info.plist │ │ │ │ ├── test.h │ │ │ │ └── test.m │ │ └── xmake.lua │ │ └── template.lua ├── pascal │ ├── console │ │ ├── project │ │ │ ├── src │ │ │ │ └── main.pas │ │ │ └── xmake.lua │ │ └── template.lua │ └── shared │ │ ├── project │ │ ├── src │ │ │ ├── foo.pas │ │ │ └── main.pas │ │ └── xmake.lua │ │ └── template.lua ├── rust │ ├── console │ │ ├── project │ │ │ ├── src │ │ │ │ └── main.rs │ │ │ └── xmake.lua │ │ └── template.lua │ ├── shared │ │ ├── project │ │ │ ├── src │ │ │ │ ├── foo.rs │ │ │ │ └── main.rs │ │ │ └── xmake.lua │ │ └── template.lua │ └── static │ │ ├── project │ │ ├── src │ │ │ ├── foo.rs │ │ │ └── main.rs │ │ └── xmake.lua │ │ └── template.lua ├── swift │ └── console │ │ ├── project │ │ ├── src │ │ │ └── main.swift │ │ └── xmake.lua │ │ └── template.lua ├── vala │ ├── console │ │ ├── project │ │ │ ├── src │ │ │ │ └── main.vala │ │ │ └── xmake.lua │ │ └── template.lua │ ├── shared │ │ ├── project │ │ │ ├── src │ │ │ │ ├── main.vala │ │ │ │ └── mymath.vala │ │ │ └── xmake.lua │ │ └── template.lua │ └── static │ │ ├── project │ │ ├── src │ │ │ ├── main.vala │ │ │ └── mymath.vala │ │ └── xmake.lua │ │ └── template.lua └── zig │ ├── console │ ├── project │ │ ├── src │ │ │ ├── main.zig │ │ │ └── test.zig │ │ └── xmake.lua │ └── template.lua │ ├── shared │ ├── project │ │ ├── src │ │ │ ├── main.zig │ │ │ └── test.zig │ │ └── xmake.lua │ └── template.lua │ └── static │ ├── project │ ├── src │ │ ├── main.zig │ │ └── test.zig │ └── xmake.lua │ └── template.lua ├── themes ├── dark │ └── xmake.lua ├── default │ └── xmake.lua ├── emoji │ └── xmake.lua ├── light │ └── xmake.lua ├── ninja │ └── xmake.lua ├── plain │ └── xmake.lua ├── powershell │ └── xmake.lua └── soong │ └── xmake.lua └── toolchains ├── armcc └── xmake.lua ├── armclang └── xmake.lua ├── c51 └── xmake.lua ├── circle └── xmake.lua ├── clang-12 └── xmake.lua ├── clang-13 └── xmake.lua ├── clang-14 └── xmake.lua ├── clang-15 └── xmake.lua ├── clang-16 └── xmake.lua ├── clang-17 └── xmake.lua ├── clang-18 └── xmake.lua ├── clang-19 └── xmake.lua ├── clang-20 └── xmake.lua ├── clang-cl ├── check.lua ├── load.lua └── xmake.lua ├── clang ├── check.lua ├── load.lua ├── toolchain_clang.lua └── xmake.lua ├── cosmocc ├── check.lua └── xmake.lua ├── cross ├── check.lua ├── load.lua └── xmake.lua ├── cuda └── xmake.lua ├── dlang ├── check.lua └── xmake.lua ├── dmd └── xmake.lua ├── dpcpp ├── check.lua ├── load.lua └── xmake.lua ├── emcc └── xmake.lua ├── envs └── xmake.lua ├── fasm └── xmake.lua ├── flang └── xmake.lua ├── fpc └── xmake.lua ├── gcc-10 └── xmake.lua ├── gcc-11 └── xmake.lua ├── gcc-12 └── xmake.lua ├── gcc-13 └── xmake.lua ├── gcc-14 └── xmake.lua ├── gcc-15 └── xmake.lua ├── gcc-4.8 └── xmake.lua ├── gcc-4.9 └── xmake.lua ├── gcc-8 └── xmake.lua ├── gcc-9 └── xmake.lua ├── gcc ├── toolchain_gcc.lua └── xmake.lua ├── gdc ├── check.lua └── xmake.lua ├── gfortran └── xmake.lua ├── gnu-rm └── xmake.lua ├── go └── xmake.lua ├── hdk ├── check.lua ├── load.lua └── xmake.lua ├── iararm └── xmake.lua ├── icc ├── check.lua ├── load.lua └── xmake.lua ├── icx ├── check.lua ├── load.lua └── xmake.lua ├── ifort ├── check.lua ├── load.lua └── xmake.lua ├── ifx ├── check.lua ├── load.lua └── xmake.lua ├── iverilog └── xmake.lua ├── kotlin-native └── xmake.lua ├── ldc ├── check.lua └── xmake.lua ├── llvm ├── check.lua └── xmake.lua ├── masm32 └── xmake.lua ├── mingw ├── check.lua └── xmake.lua ├── msvc ├── check.lua ├── load.lua └── xmake.lua ├── muslcc └── xmake.lua ├── nasm └── xmake.lua ├── ndk ├── check.lua ├── load.lua └── xmake.lua ├── nim └── xmake.lua ├── rust └── xmake.lua ├── sdcc ├── check.lua └── xmake.lua ├── swift └── xmake.lua ├── ti-c2000 └── xmake.lua ├── ti-c6000 └── xmake.lua ├── tinycc └── xmake.lua ├── verilator └── xmake.lua ├── wasi └── xmake.lua ├── xcode ├── check.lua ├── load_appletvos.lua ├── load_applexros.lua ├── load_iphoneos.lua ├── load_macosx.lua ├── load_platform.lua ├── load_watchos.lua └── xmake.lua ├── yasm └── xmake.lua └── zig └── xmake.lua /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/archlinux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/.github/workflows/archlinux.yml -------------------------------------------------------------------------------- /.github/workflows/cosmocc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/.github/workflows/cosmocc.yml -------------------------------------------------------------------------------- /.github/workflows/dragonflybsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/.github/workflows/dragonflybsd.yml -------------------------------------------------------------------------------- /.github/workflows/fedora.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/.github/workflows/fedora.yml -------------------------------------------------------------------------------- /.github/workflows/freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/.github/workflows/freebsd.yml -------------------------------------------------------------------------------- /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/linux_arm64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/.github/workflows/linux_arm64.yml -------------------------------------------------------------------------------- /.github/workflows/linux_luajit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/.github/workflows/linux_luajit.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/macos_arm64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/.github/workflows/macos_arm64.yml -------------------------------------------------------------------------------- /.github/workflows/msys2_mingw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/.github/workflows/msys2_mingw.yml -------------------------------------------------------------------------------- /.github/workflows/netbsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/.github/workflows/netbsd.yml -------------------------------------------------------------------------------- /.github/workflows/openbsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/.github/workflows/openbsd.yml -------------------------------------------------------------------------------- /.github/workflows/solaris.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/.github/workflows/solaris.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/NOTICE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/README_zh.md -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/configure -------------------------------------------------------------------------------- /core/src/cli/xmake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/cli/xmake.c -------------------------------------------------------------------------------- /core/src/cli/xmake.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/cli/xmake.ico -------------------------------------------------------------------------------- /core/src/cli/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/cli/xmake.lua -------------------------------------------------------------------------------- /core/src/cli/xmake.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/cli/xmake.rc -------------------------------------------------------------------------------- /core/src/cli/xmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/cli/xmake.sh -------------------------------------------------------------------------------- /core/src/lua-cjson/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/lua-cjson/xmake.lua -------------------------------------------------------------------------------- /core/src/lua-cjson/xmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/lua-cjson/xmake.sh -------------------------------------------------------------------------------- /core/src/lua/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/lua/xmake.lua -------------------------------------------------------------------------------- /core/src/lua/xmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/lua/xmake.sh -------------------------------------------------------------------------------- /core/src/luajit/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/luajit/xmake.lua -------------------------------------------------------------------------------- /core/src/luajit/xmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/luajit/xmake.sh -------------------------------------------------------------------------------- /core/src/lz4/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/lz4/xmake.lua -------------------------------------------------------------------------------- /core/src/lz4/xmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/lz4/xmake.sh -------------------------------------------------------------------------------- /core/src/pdcurses/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/pdcurses/xmake.lua -------------------------------------------------------------------------------- /core/src/sv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/sv/.gitignore -------------------------------------------------------------------------------- /core/src/sv/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/sv/.travis.yml -------------------------------------------------------------------------------- /core/src/sv/xmake.lua: -------------------------------------------------------------------------------- 1 | includes("sv") 2 | -------------------------------------------------------------------------------- /core/src/sv/xmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/sv/xmake.sh -------------------------------------------------------------------------------- /core/src/tbox/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/tbox/xmake.lua -------------------------------------------------------------------------------- /core/src/tbox/xmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/tbox/xmake.sh -------------------------------------------------------------------------------- /core/src/xmake/base64/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/base64/decode.c -------------------------------------------------------------------------------- /core/src/xmake/base64/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/base64/encode.c -------------------------------------------------------------------------------- /core/src/xmake/base64/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/base64/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/binutils/bin2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/binutils/bin2c.c -------------------------------------------------------------------------------- /core/src/xmake/binutils/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/binutils/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/binutils/readsyms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/binutils/readsyms.c -------------------------------------------------------------------------------- /core/src/xmake/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/config.h -------------------------------------------------------------------------------- /core/src/xmake/curses/curses.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/curses/curses.c -------------------------------------------------------------------------------- /core/src/xmake/curses/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/curses/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/engine.c -------------------------------------------------------------------------------- /core/src/xmake/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/engine.h -------------------------------------------------------------------------------- /core/src/xmake/engine_pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/engine_pool.c -------------------------------------------------------------------------------- /core/src/xmake/engine_pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/engine_pool.h -------------------------------------------------------------------------------- /core/src/xmake/fwatcher/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/fwatcher/add.c -------------------------------------------------------------------------------- /core/src/xmake/fwatcher/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/fwatcher/close.c -------------------------------------------------------------------------------- /core/src/xmake/fwatcher/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/fwatcher/open.c -------------------------------------------------------------------------------- /core/src/xmake/fwatcher/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/fwatcher/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/fwatcher/remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/fwatcher/remove.c -------------------------------------------------------------------------------- /core/src/xmake/fwatcher/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/fwatcher/wait.c -------------------------------------------------------------------------------- /core/src/xmake/hash/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/hash/md5.c -------------------------------------------------------------------------------- /core/src/xmake/hash/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/hash/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/hash/rand128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/hash/rand128.c -------------------------------------------------------------------------------- /core/src/xmake/hash/rand32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/hash/rand32.c -------------------------------------------------------------------------------- /core/src/xmake/hash/rand64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/hash/rand64.c -------------------------------------------------------------------------------- /core/src/xmake/hash/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/hash/sha.c -------------------------------------------------------------------------------- /core/src/xmake/hash/uuid4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/hash/uuid4.c -------------------------------------------------------------------------------- /core/src/xmake/hash/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/hash/xxhash.c -------------------------------------------------------------------------------- /core/src/xmake/io/file_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/file_close.c -------------------------------------------------------------------------------- /core/src/xmake/io/file_flush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/file_flush.c -------------------------------------------------------------------------------- /core/src/xmake/io/file_isatty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/file_isatty.c -------------------------------------------------------------------------------- /core/src/xmake/io/file_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/file_open.c -------------------------------------------------------------------------------- /core/src/xmake/io/file_rawfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/file_rawfd.c -------------------------------------------------------------------------------- /core/src/xmake/io/file_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/file_read.c -------------------------------------------------------------------------------- /core/src/xmake/io/file_readable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/file_readable.c -------------------------------------------------------------------------------- /core/src/xmake/io/file_seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/file_seek.c -------------------------------------------------------------------------------- /core/src/xmake/io/file_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/file_size.c -------------------------------------------------------------------------------- /core/src/xmake/io/file_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/file_write.c -------------------------------------------------------------------------------- /core/src/xmake/io/filelock_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/filelock_close.c -------------------------------------------------------------------------------- /core/src/xmake/io/filelock_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/filelock_lock.c -------------------------------------------------------------------------------- /core/src/xmake/io/filelock_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/filelock_open.c -------------------------------------------------------------------------------- /core/src/xmake/io/iscygpty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/iscygpty.c -------------------------------------------------------------------------------- /core/src/xmake/io/pipe_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/pipe_close.c -------------------------------------------------------------------------------- /core/src/xmake/io/pipe_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/pipe_connect.c -------------------------------------------------------------------------------- /core/src/xmake/io/pipe_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/pipe_open.c -------------------------------------------------------------------------------- /core/src/xmake/io/pipe_openpair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/pipe_openpair.c -------------------------------------------------------------------------------- /core/src/xmake/io/pipe_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/pipe_read.c -------------------------------------------------------------------------------- /core/src/xmake/io/pipe_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/pipe_wait.c -------------------------------------------------------------------------------- /core/src/xmake/io/pipe_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/pipe_write.c -------------------------------------------------------------------------------- /core/src/xmake/io/poller.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/poller.c -------------------------------------------------------------------------------- /core/src/xmake/io/poller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/poller.h -------------------------------------------------------------------------------- /core/src/xmake/io/poller_insert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/poller_insert.c -------------------------------------------------------------------------------- /core/src/xmake/io/poller_modify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/poller_modify.c -------------------------------------------------------------------------------- /core/src/xmake/io/poller_remove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/poller_remove.c -------------------------------------------------------------------------------- /core/src/xmake/io/poller_spank.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/poller_spank.c -------------------------------------------------------------------------------- /core/src/xmake/io/poller_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/poller_support.c -------------------------------------------------------------------------------- /core/src/xmake/io/poller_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/poller_wait.c -------------------------------------------------------------------------------- /core/src/xmake/io/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/io/socket_accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/socket_accept.c -------------------------------------------------------------------------------- /core/src/xmake/io/socket_bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/socket_bind.c -------------------------------------------------------------------------------- /core/src/xmake/io/socket_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/socket_close.c -------------------------------------------------------------------------------- /core/src/xmake/io/socket_connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/socket_connect.c -------------------------------------------------------------------------------- /core/src/xmake/io/socket_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/socket_ctrl.c -------------------------------------------------------------------------------- /core/src/xmake/io/socket_kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/socket_kill.c -------------------------------------------------------------------------------- /core/src/xmake/io/socket_listen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/socket_listen.c -------------------------------------------------------------------------------- /core/src/xmake/io/socket_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/socket_open.c -------------------------------------------------------------------------------- /core/src/xmake/io/socket_rawfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/socket_rawfd.c -------------------------------------------------------------------------------- /core/src/xmake/io/socket_recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/socket_recv.c -------------------------------------------------------------------------------- /core/src/xmake/io/socket_send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/socket_send.c -------------------------------------------------------------------------------- /core/src/xmake/io/socket_sendto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/socket_sendto.c -------------------------------------------------------------------------------- /core/src/xmake/io/socket_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/socket_wait.c -------------------------------------------------------------------------------- /core/src/xmake/io/stdfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/io/stdfile.c -------------------------------------------------------------------------------- /core/src/xmake/libc/byteof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/libc/byteof.c -------------------------------------------------------------------------------- /core/src/xmake/libc/dataptr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/libc/dataptr.c -------------------------------------------------------------------------------- /core/src/xmake/libc/free.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/libc/free.c -------------------------------------------------------------------------------- /core/src/xmake/libc/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/libc/malloc.c -------------------------------------------------------------------------------- /core/src/xmake/libc/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/libc/memcpy.c -------------------------------------------------------------------------------- /core/src/xmake/libc/memmov.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/libc/memmov.c -------------------------------------------------------------------------------- /core/src/xmake/libc/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/libc/memset.c -------------------------------------------------------------------------------- /core/src/xmake/libc/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/libc/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/libc/setbyte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/libc/setbyte.c -------------------------------------------------------------------------------- /core/src/xmake/libc/strndup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/libc/strndup.c -------------------------------------------------------------------------------- /core/src/xmake/lz4/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/lz4/compress.c -------------------------------------------------------------------------------- /core/src/xmake/lz4/compress_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/lz4/compress_file.c -------------------------------------------------------------------------------- /core/src/xmake/lz4/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/lz4/decompress.c -------------------------------------------------------------------------------- /core/src/xmake/lz4/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/lz4/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/os/args.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/args.c -------------------------------------------------------------------------------- /core/src/xmake/os/argv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/argv.c -------------------------------------------------------------------------------- /core/src/xmake/os/chdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/chdir.c -------------------------------------------------------------------------------- /core/src/xmake/os/cpdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/cpdir.c -------------------------------------------------------------------------------- /core/src/xmake/os/cpfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/cpfile.c -------------------------------------------------------------------------------- /core/src/xmake/os/cpuinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/cpuinfo.c -------------------------------------------------------------------------------- /core/src/xmake/os/curdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/curdir.c -------------------------------------------------------------------------------- /core/src/xmake/os/emptydir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/emptydir.c -------------------------------------------------------------------------------- /core/src/xmake/os/exists.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/exists.c -------------------------------------------------------------------------------- /core/src/xmake/os/filesize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/filesize.c -------------------------------------------------------------------------------- /core/src/xmake/os/find.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/find.c -------------------------------------------------------------------------------- /core/src/xmake/os/fscase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/fscase.c -------------------------------------------------------------------------------- /core/src/xmake/os/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/getenv.c -------------------------------------------------------------------------------- /core/src/xmake/os/getenvs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/getenvs.c -------------------------------------------------------------------------------- /core/src/xmake/os/getown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/getown.c -------------------------------------------------------------------------------- /core/src/xmake/os/getpid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/getpid.c -------------------------------------------------------------------------------- /core/src/xmake/os/getwinsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/getwinsize.c -------------------------------------------------------------------------------- /core/src/xmake/os/gid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/gid.c -------------------------------------------------------------------------------- /core/src/xmake/os/isdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/isdir.c -------------------------------------------------------------------------------- /core/src/xmake/os/isfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/isfile.c -------------------------------------------------------------------------------- /core/src/xmake/os/islink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/islink.c -------------------------------------------------------------------------------- /core/src/xmake/os/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/link.c -------------------------------------------------------------------------------- /core/src/xmake/os/mclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/mclock.c -------------------------------------------------------------------------------- /core/src/xmake/os/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/meminfo.c -------------------------------------------------------------------------------- /core/src/xmake/os/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/mkdir.c -------------------------------------------------------------------------------- /core/src/xmake/os/mtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/mtime.c -------------------------------------------------------------------------------- /core/src/xmake/os/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/os/readlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/readlink.c -------------------------------------------------------------------------------- /core/src/xmake/os/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/rename.c -------------------------------------------------------------------------------- /core/src/xmake/os/rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/rmdir.c -------------------------------------------------------------------------------- /core/src/xmake/os/rmfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/rmfile.c -------------------------------------------------------------------------------- /core/src/xmake/os/setenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/setenv.c -------------------------------------------------------------------------------- /core/src/xmake/os/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/signal.c -------------------------------------------------------------------------------- /core/src/xmake/os/sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/sleep.c -------------------------------------------------------------------------------- /core/src/xmake/os/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/strerror.c -------------------------------------------------------------------------------- /core/src/xmake/os/syserror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/syserror.c -------------------------------------------------------------------------------- /core/src/xmake/os/tmpdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/tmpdir.c -------------------------------------------------------------------------------- /core/src/xmake/os/touch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/touch.c -------------------------------------------------------------------------------- /core/src/xmake/os/uid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/os/uid.c -------------------------------------------------------------------------------- /core/src/xmake/package/loadxmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/package/loadxmi.c -------------------------------------------------------------------------------- /core/src/xmake/package/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/package/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/path/absolute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/path/absolute.c -------------------------------------------------------------------------------- /core/src/xmake/path/directory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/path/directory.c -------------------------------------------------------------------------------- /core/src/xmake/path/is_absolute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/path/is_absolute.c -------------------------------------------------------------------------------- /core/src/xmake/path/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/path/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/path/relative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/path/relative.c -------------------------------------------------------------------------------- /core/src/xmake/path/translate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/path/translate.c -------------------------------------------------------------------------------- /core/src/xmake/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/prefix/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/prefix/config.h -------------------------------------------------------------------------------- /core/src/xmake/prefix/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/prefix/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/prefix/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/prefix/version.h -------------------------------------------------------------------------------- /core/src/xmake/process/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/process/close.c -------------------------------------------------------------------------------- /core/src/xmake/process/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/process/kill.c -------------------------------------------------------------------------------- /core/src/xmake/process/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/process/open.c -------------------------------------------------------------------------------- /core/src/xmake/process/openv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/process/openv.c -------------------------------------------------------------------------------- /core/src/xmake/process/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/process/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/process/wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/process/wait.c -------------------------------------------------------------------------------- /core/src/xmake/readline/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/readline/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/readline/readline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/readline/readline.c -------------------------------------------------------------------------------- /core/src/xmake/sandbox/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/sandbox/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/semver/compare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/semver/compare.c -------------------------------------------------------------------------------- /core/src/xmake/semver/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/semver/parse.c -------------------------------------------------------------------------------- /core/src/xmake/semver/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/semver/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/semver/satisfies.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/semver/satisfies.c -------------------------------------------------------------------------------- /core/src/xmake/semver/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/semver/select.c -------------------------------------------------------------------------------- /core/src/xmake/semver/semver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/semver/semver.c -------------------------------------------------------------------------------- /core/src/xmake/string/convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/string/convert.c -------------------------------------------------------------------------------- /core/src/xmake/string/endswith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/string/endswith.c -------------------------------------------------------------------------------- /core/src/xmake/string/lastof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/string/lastof.c -------------------------------------------------------------------------------- /core/src/xmake/string/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/string/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/string/split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/string/split.c -------------------------------------------------------------------------------- /core/src/xmake/string/startswith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/string/startswith.c -------------------------------------------------------------------------------- /core/src/xmake/string/trim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/string/trim.c -------------------------------------------------------------------------------- /core/src/xmake/thread/event_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/thread/event_exit.c -------------------------------------------------------------------------------- /core/src/xmake/thread/event_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/thread/event_init.c -------------------------------------------------------------------------------- /core/src/xmake/thread/event_post.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/thread/event_post.c -------------------------------------------------------------------------------- /core/src/xmake/thread/event_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/thread/event_wait.c -------------------------------------------------------------------------------- /core/src/xmake/thread/mutex_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/thread/mutex_exit.c -------------------------------------------------------------------------------- /core/src/xmake/thread/mutex_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/thread/mutex_init.c -------------------------------------------------------------------------------- /core/src/xmake/thread/mutex_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/thread/mutex_lock.c -------------------------------------------------------------------------------- /core/src/xmake/thread/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/thread/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/thread/queue_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/thread/queue_exit.c -------------------------------------------------------------------------------- /core/src/xmake/thread/queue_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/thread/queue_init.c -------------------------------------------------------------------------------- /core/src/xmake/thread/queue_pop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/thread/queue_pop.c -------------------------------------------------------------------------------- /core/src/xmake/thread/queue_push.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/thread/queue_push.c -------------------------------------------------------------------------------- /core/src/xmake/thread/queue_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/thread/queue_size.c -------------------------------------------------------------------------------- /core/src/xmake/tty/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/tty/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/tty/term_mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/tty/term_mode.c -------------------------------------------------------------------------------- /core/src/xmake/winos/ansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/winos/ansi.c -------------------------------------------------------------------------------- /core/src/xmake/winos/ansi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/winos/ansi.h -------------------------------------------------------------------------------- /core/src/xmake/winos/prefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/winos/prefix.h -------------------------------------------------------------------------------- /core/src/xmake/winos/short_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/winos/short_path.c -------------------------------------------------------------------------------- /core/src/xmake/xmake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/xmake.c -------------------------------------------------------------------------------- /core/src/xmake/xmake.config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/xmake.config.h.in -------------------------------------------------------------------------------- /core/src/xmake/xmake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/xmake.h -------------------------------------------------------------------------------- /core/src/xmake/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/xmake.lua -------------------------------------------------------------------------------- /core/src/xmake/xmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xmake/xmake.sh -------------------------------------------------------------------------------- /core/src/xxhash/xxhash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xxhash/xxhash/LICENSE -------------------------------------------------------------------------------- /core/src/xxhash/xxhash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/src/xxhash/xxhash/xxhash.h -------------------------------------------------------------------------------- /core/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/xmake.lua -------------------------------------------------------------------------------- /core/xmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/xmake.sh -------------------------------------------------------------------------------- /core/xpack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/core/xpack.lua -------------------------------------------------------------------------------- /scripts/debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/README.Debian -------------------------------------------------------------------------------- /scripts/debian/README.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/README.source -------------------------------------------------------------------------------- /scripts/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/changelog -------------------------------------------------------------------------------- /scripts/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /scripts/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/control -------------------------------------------------------------------------------- /scripts/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/copyright -------------------------------------------------------------------------------- /scripts/debian/init.d.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/init.d.ex -------------------------------------------------------------------------------- /scripts/debian/manpage.1.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/manpage.1.ex -------------------------------------------------------------------------------- /scripts/debian/manpage.sgml.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/manpage.sgml.ex -------------------------------------------------------------------------------- /scripts/debian/manpage.xml.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/manpage.xml.ex -------------------------------------------------------------------------------- /scripts/debian/menu.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/menu.ex -------------------------------------------------------------------------------- /scripts/debian/postinst.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/postinst.ex -------------------------------------------------------------------------------- /scripts/debian/postrm.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/postrm.ex -------------------------------------------------------------------------------- /scripts/debian/preinst.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/preinst.ex -------------------------------------------------------------------------------- /scripts/debian/prerm.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/prerm.ex -------------------------------------------------------------------------------- /scripts/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/rules -------------------------------------------------------------------------------- /scripts/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /scripts/debian/watch.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/watch.ex -------------------------------------------------------------------------------- /scripts/debian/xmake-docs.docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/xmake-docs.docs -------------------------------------------------------------------------------- /scripts/debian/xmake.cron.d.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/xmake.cron.d.ex -------------------------------------------------------------------------------- /scripts/debian/xmake.default.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/xmake.default.ex -------------------------------------------------------------------------------- /scripts/debian/xmake.doc-base.EX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/debian/xmake.doc-base.EX -------------------------------------------------------------------------------- /scripts/get.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/get.ps1 -------------------------------------------------------------------------------- /scripts/get.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/get.sh -------------------------------------------------------------------------------- /scripts/makeppa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/makeppa -------------------------------------------------------------------------------- /scripts/man/xmake.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/man/xmake.1 -------------------------------------------------------------------------------- /scripts/man/xrepo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/man/xrepo.1 -------------------------------------------------------------------------------- /scripts/msys/xmake.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/msys/xmake.cmd -------------------------------------------------------------------------------- /scripts/msys/xmake.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/msys/xmake.ps1 -------------------------------------------------------------------------------- /scripts/msys/xmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/msys/xmake.sh -------------------------------------------------------------------------------- /scripts/rpmbuild/xmake.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/rpmbuild/xmake.spec -------------------------------------------------------------------------------- /scripts/srcenv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/srcenv.bat -------------------------------------------------------------------------------- /scripts/srcenv.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/srcenv.profile -------------------------------------------------------------------------------- /scripts/srcenv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/srcenv.ps1 -------------------------------------------------------------------------------- /scripts/xrepo.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/xrepo.bat -------------------------------------------------------------------------------- /scripts/xrepo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/xrepo.ps1 -------------------------------------------------------------------------------- /scripts/xrepo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/scripts/xrepo.sh -------------------------------------------------------------------------------- /tests/actions/config/.gitignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /tests/actions/config/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/actions/config/test.lua -------------------------------------------------------------------------------- /tests/actions/install/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/actions/install/.gitignore -------------------------------------------------------------------------------- /tests/actions/install/src/foo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/actions/install/src/foo.cpp -------------------------------------------------------------------------------- /tests/actions/install/src/foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/actions/install/src/foo.h -------------------------------------------------------------------------------- /tests/actions/install/src/foo.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/actions/install/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/actions/install/src/main.cpp -------------------------------------------------------------------------------- /tests/actions/install/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/actions/install/test.lua -------------------------------------------------------------------------------- /tests/actions/install/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/actions/install/xmake.lua -------------------------------------------------------------------------------- /tests/actions/test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/actions/test/.gitignore -------------------------------------------------------------------------------- /tests/actions/test/src/test_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/actions/test/src/test_1.cpp -------------------------------------------------------------------------------- /tests/actions/test/src/test_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/actions/test/src/test_2.cpp -------------------------------------------------------------------------------- /tests/actions/test/src/test_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/actions/test/src/test_3.cpp -------------------------------------------------------------------------------- /tests/actions/test/src/test_4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/actions/test/src/test_4.cpp -------------------------------------------------------------------------------- /tests/actions/test/src/test_5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/actions/test/src/test_5.cpp -------------------------------------------------------------------------------- /tests/actions/test/src/test_6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/actions/test/src/test_6.cpp -------------------------------------------------------------------------------- /tests/actions/test/src/test_7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/actions/test/src/test_7.cpp -------------------------------------------------------------------------------- /tests/actions/test/src/test_8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/actions/test/src/test_8.cpp -------------------------------------------------------------------------------- /tests/actions/test/src/test_9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/actions/test/src/test_9.cpp -------------------------------------------------------------------------------- /tests/actions/test/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | os.exec("xmake test") 3 | end 4 | 5 | -------------------------------------------------------------------------------- /tests/actions/test/tests/stub_1.cpp: -------------------------------------------------------------------------------- 1 | #ifndef STUB_1 2 | #error 3 | #endif 4 | -------------------------------------------------------------------------------- /tests/actions/test/tests/stub_2.cpp: -------------------------------------------------------------------------------- 1 | #ifndef STUB_2 2 | #error 3 | #endif 4 | -------------------------------------------------------------------------------- /tests/actions/test/tests/stub_n1.cpp: -------------------------------------------------------------------------------- 1 | #ifndef STUB_N 2 | #error 3 | #endif 4 | -------------------------------------------------------------------------------- /tests/actions/test/tests/stub_n2.cpp: -------------------------------------------------------------------------------- 1 | #ifndef STUB_N 2 | #error 3 | #endif 4 | -------------------------------------------------------------------------------- /tests/actions/test/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/actions/test/xmake.lua -------------------------------------------------------------------------------- /tests/apis/add_configfiles/hello.man: -------------------------------------------------------------------------------- 1 | ${module} ${ARCH} 2 | -------------------------------------------------------------------------------- /tests/apis/add_configfiles/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/add_configfiles/main.c -------------------------------------------------------------------------------- /tests/apis/add_configfiles/main2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/add_configfiles/main2.c -------------------------------------------------------------------------------- /tests/apis/add_configfiles/test.c.in: -------------------------------------------------------------------------------- 1 | int test() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/apis/add_configfiles/test.lua: -------------------------------------------------------------------------------- 1 | function main() 2 | os.exec("xmake") 3 | end 4 | -------------------------------------------------------------------------------- /tests/apis/add_defines/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/add_defines/.gitignore -------------------------------------------------------------------------------- /tests/apis/add_defines/test.lua: -------------------------------------------------------------------------------- 1 | function main() 2 | os.exec("xmake") 3 | end 4 | -------------------------------------------------------------------------------- /tests/apis/add_defines/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/add_defines/xmake.lua -------------------------------------------------------------------------------- /tests/apis/add_deps/inc1/stub.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apis/add_deps/inc2/stub.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apis/add_deps/inc3/stub.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apis/add_deps/inc4/stub.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apis/add_deps/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/add_deps/src/main.c -------------------------------------------------------------------------------- /tests/apis/add_deps/test.lua: -------------------------------------------------------------------------------- 1 | function main() 2 | os.exec("xmake") 3 | end 4 | -------------------------------------------------------------------------------- /tests/apis/add_deps/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/add_deps/xmake.lua -------------------------------------------------------------------------------- /tests/apis/add_imports/test.lua: -------------------------------------------------------------------------------- 1 | function main() 2 | os.exec("xmake") 3 | end 4 | -------------------------------------------------------------------------------- /tests/apis/add_imports/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/add_imports/xmake.lua -------------------------------------------------------------------------------- /tests/apis/add_xxx/test.lua: -------------------------------------------------------------------------------- 1 | function main() 2 | os.exec("xmake") 3 | end 4 | -------------------------------------------------------------------------------- /tests/apis/add_xxx/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/add_xxx/xmake.lua -------------------------------------------------------------------------------- /tests/apis/check_xxx/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/check_xxx/config.h.in -------------------------------------------------------------------------------- /tests/apis/check_xxx/foo.c: -------------------------------------------------------------------------------- 1 | #include "config.h" 2 | 3 | int foo() { 4 | return 0; 5 | } 6 | -------------------------------------------------------------------------------- /tests/apis/check_xxx/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/check_xxx/main.c -------------------------------------------------------------------------------- /tests/apis/check_xxx/test.lua: -------------------------------------------------------------------------------- 1 | function main() 2 | os.exec("xmake") 3 | end 4 | -------------------------------------------------------------------------------- /tests/apis/check_xxx/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/check_xxx/xmake.lua -------------------------------------------------------------------------------- /tests/apis/clone_target/test.lua: -------------------------------------------------------------------------------- 1 | function main() 2 | os.exec("xmake -vD") 3 | end 4 | -------------------------------------------------------------------------------- /tests/apis/clone_target/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/clone_target/xmake.lua -------------------------------------------------------------------------------- /tests/apis/namespace/basic/test.lua: -------------------------------------------------------------------------------- 1 | function main() 2 | os.exec("xmake -vD") 3 | end 4 | -------------------------------------------------------------------------------- /tests/apis/namespace/includes/test.lua: -------------------------------------------------------------------------------- 1 | function main() 2 | os.exec("xmake -vD") 3 | end 4 | -------------------------------------------------------------------------------- /tests/apis/namespace/inner/test.lua: -------------------------------------------------------------------------------- 1 | function main() 2 | os.exec("xmake -vD") 3 | end 4 | -------------------------------------------------------------------------------- /tests/apis/namespace/nested/test.lua: -------------------------------------------------------------------------------- 1 | function main() 2 | os.exec("xmake -vD") 3 | end 4 | -------------------------------------------------------------------------------- /tests/apis/namespace/option/test.lua: -------------------------------------------------------------------------------- 1 | function main() 2 | os.exec("xmake -vD") 3 | end 4 | -------------------------------------------------------------------------------- /tests/apis/namespace/root/test.lua: -------------------------------------------------------------------------------- 1 | function main() 2 | os.exec("xmake -vD") 3 | end 4 | -------------------------------------------------------------------------------- /tests/apis/namespace/rule/test.lua: -------------------------------------------------------------------------------- 1 | function main() 2 | os.exec("xmake -vD") 3 | end 4 | -------------------------------------------------------------------------------- /tests/apis/namespace/task/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/namespace/task/test.lua -------------------------------------------------------------------------------- /tests/apis/namespace/toolchain/test.lua: -------------------------------------------------------------------------------- 1 | function main() 2 | os.exec("xmake -vD") 3 | end 4 | -------------------------------------------------------------------------------- /tests/apis/rules/src/empty.stub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apis/rules/src/index.md: -------------------------------------------------------------------------------- 1 | ## hello xmake 2 | -------------------------------------------------------------------------------- /tests/apis/rules/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/rules/src/main.c -------------------------------------------------------------------------------- /tests/apis/rules/src/main2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/rules/src/main2.c -------------------------------------------------------------------------------- /tests/apis/rules/src/man/man1.in: -------------------------------------------------------------------------------- 1 | hello [name]! 2 | -------------------------------------------------------------------------------- /tests/apis/rules/src/man/man2.in: -------------------------------------------------------------------------------- 1 | hello [name]! 2 | -------------------------------------------------------------------------------- /tests/apis/rules/src/man/man3.in: -------------------------------------------------------------------------------- 1 | hello [name]! 2 | -------------------------------------------------------------------------------- /tests/apis/rules/src/test.c.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/rules/src/test.c.in -------------------------------------------------------------------------------- /tests/apis/rules/test.lua: -------------------------------------------------------------------------------- 1 | function main() 2 | os.exec("xmake") 3 | end 4 | -------------------------------------------------------------------------------- /tests/apis/rules/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/rules/xmake.lua -------------------------------------------------------------------------------- /tests/apis/rules_inject_deps/src/main.cpp2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apis/rules_inject_deps/test.lua: -------------------------------------------------------------------------------- 1 | function main() 2 | os.exec("xmake -j1") 3 | end 4 | -------------------------------------------------------------------------------- /tests/apis/rules_order/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/rules_order/src/main.c -------------------------------------------------------------------------------- /tests/apis/rules_order/src/test.man: -------------------------------------------------------------------------------- 1 | ## hello xmake 2 | -------------------------------------------------------------------------------- /tests/apis/rules_order/src/test.md: -------------------------------------------------------------------------------- 1 | ## hello xmake 2 | -------------------------------------------------------------------------------- /tests/apis/rules_order/test.lua: -------------------------------------------------------------------------------- 1 | function main() 2 | os.exec("xmake") 3 | end 4 | -------------------------------------------------------------------------------- /tests/apis/rules_order/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/rules_order/xmake.lua -------------------------------------------------------------------------------- /tests/apis/rules_override_cxx/src/test.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apis/rules_override_cxx/test.lua: -------------------------------------------------------------------------------- 1 | function main() 2 | os.exec("xmake") 3 | end 4 | -------------------------------------------------------------------------------- /tests/apis/xxx_script/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/xxx_script/test.lua -------------------------------------------------------------------------------- /tests/apis/xxx_script/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/apis/xxx_script/xmake.lua -------------------------------------------------------------------------------- /tests/benchmarks/async/runjobs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/benchmarks/async/runjobs.lua -------------------------------------------------------------------------------- /tests/benchmarks/hash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/benchmarks/hash.lua -------------------------------------------------------------------------------- /tests/cli/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/cli/test.lua -------------------------------------------------------------------------------- /tests/cli/utils/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/cli/utils/test.lua -------------------------------------------------------------------------------- /tests/modules/bytes/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/bytes/test.lua -------------------------------------------------------------------------------- /tests/modules/cache/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/cache/test.lua -------------------------------------------------------------------------------- /tests/modules/compress/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/compress/test.lua -------------------------------------------------------------------------------- /tests/modules/devel/git/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/devel/git/test.lua -------------------------------------------------------------------------------- /tests/modules/graph/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/graph/test.lua -------------------------------------------------------------------------------- /tests/modules/hash/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/hash/test.lua -------------------------------------------------------------------------------- /tests/modules/hashset/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/hashset/test.lua -------------------------------------------------------------------------------- /tests/modules/heap/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/heap/test.lua -------------------------------------------------------------------------------- /tests/modules/hello/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/hello/test.lua -------------------------------------------------------------------------------- /tests/modules/io/files/.gitattributes: -------------------------------------------------------------------------------- 1 | * binary -------------------------------------------------------------------------------- /tests/modules/io/files/utf8-crlf-neleof: -------------------------------------------------------------------------------- 1 | 123\ 2 | 456 3 | 789 -------------------------------------------------------------------------------- /tests/modules/io/files/utf8bom-lf-eleof: -------------------------------------------------------------------------------- 1 | 123\ 2 | 456 3 | 789 4 | -------------------------------------------------------------------------------- /tests/modules/io/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/io/test.lua -------------------------------------------------------------------------------- /tests/modules/jobgraph/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/jobgraph/test.lua -------------------------------------------------------------------------------- /tests/modules/json/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/json/test.lua -------------------------------------------------------------------------------- /tests/modules/lib/detect/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/lib/detect/test.lua -------------------------------------------------------------------------------- /tests/modules/list/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/list/test.lua -------------------------------------------------------------------------------- /tests/modules/math/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/math/test.lua -------------------------------------------------------------------------------- /tests/modules/os/async_copy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/os/async_copy.lua -------------------------------------------------------------------------------- /tests/modules/os/cpuinfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/os/cpuinfo.lua -------------------------------------------------------------------------------- /tests/modules/os/meminfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/os/meminfo.lua -------------------------------------------------------------------------------- /tests/modules/os/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/os/test.lua -------------------------------------------------------------------------------- /tests/modules/path/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/path/test.lua -------------------------------------------------------------------------------- /tests/modules/pipe/echo_client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/pipe/echo_client.lua -------------------------------------------------------------------------------- /tests/modules/pipe/echo_server.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/pipe/echo_server.lua -------------------------------------------------------------------------------- /tests/modules/pipe/pipe_pair.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/pipe/pipe_pair.lua -------------------------------------------------------------------------------- /tests/modules/process/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/process/test.lua -------------------------------------------------------------------------------- /tests/modules/queue/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/queue/test.lua -------------------------------------------------------------------------------- /tests/modules/scheduler/sleep.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/scheduler/sleep.lua -------------------------------------------------------------------------------- /tests/modules/scheduler/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/scheduler/test.lua -------------------------------------------------------------------------------- /tests/modules/scheduler/yield.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/scheduler/yield.lua -------------------------------------------------------------------------------- /tests/modules/semver/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/semver/test.lua -------------------------------------------------------------------------------- /tests/modules/signal/sigint.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/signal/sigint.lua -------------------------------------------------------------------------------- /tests/modules/string/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/string/test.lua -------------------------------------------------------------------------------- /tests/modules/table/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/table/test.lua -------------------------------------------------------------------------------- /tests/modules/thread/coroutine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/thread/coroutine.lua -------------------------------------------------------------------------------- /tests/modules/thread/event.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/thread/event.lua -------------------------------------------------------------------------------- /tests/modules/thread/mutex.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/thread/mutex.lua -------------------------------------------------------------------------------- /tests/modules/thread/queue.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/thread/queue.lua -------------------------------------------------------------------------------- /tests/modules/thread/semaphore.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/thread/semaphore.lua -------------------------------------------------------------------------------- /tests/modules/thread/sharedata.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/thread/sharedata.lua -------------------------------------------------------------------------------- /tests/modules/thread/sleep.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/thread/sleep.lua -------------------------------------------------------------------------------- /tests/modules/tty/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/tty/test.lua -------------------------------------------------------------------------------- /tests/modules/xml/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/modules/xml/test.lua -------------------------------------------------------------------------------- /tests/plugins/create/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/plugins/create/test.lua -------------------------------------------------------------------------------- /tests/plugins/macro/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/plugins/macro/.gitignore -------------------------------------------------------------------------------- /tests/plugins/macro/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/plugins/macro/src/main.cpp -------------------------------------------------------------------------------- /tests/plugins/macro/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/plugins/macro/test.lua -------------------------------------------------------------------------------- /tests/plugins/macro/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/plugins/macro/xmake.lua -------------------------------------------------------------------------------- /tests/plugins/pack/console/include/foo/foo.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/plugins/pack/console/include/test.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/plugins/pack/console/src/assets/file1.txt: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /tests/plugins/pack/console/src/assets/file2.txt: -------------------------------------------------------------------------------- 1 | hello 2 | -------------------------------------------------------------------------------- /tests/plugins/pack/console/src/assets/img1.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/plugins/pack/console/src/assets/img2.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/plugins/pack/console/src/xmake.rc: -------------------------------------------------------------------------------- 1 | IDI_APP ICON DISCARDABLE "assets/xmake.ico" 2 | -------------------------------------------------------------------------------- /tests/plugins/pack/qtapp/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/plugins/pack/qtapp/xmake.lua -------------------------------------------------------------------------------- /tests/plugins/project/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/plugins/project/test.lua -------------------------------------------------------------------------------- /tests/projects/asm/fasm/src/main.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/projects/asm/fasm/src/main.S -------------------------------------------------------------------------------- /tests/projects/asm/fasm/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/projects/asm/fasm/xmake.lua -------------------------------------------------------------------------------- /tests/projects/asm/gas/src/main.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/projects/asm/gas/src/main.S -------------------------------------------------------------------------------- /tests/projects/asm/gas/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/projects/asm/gas/xmake.lua -------------------------------------------------------------------------------- /tests/projects/asm/nasm/src/main.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/projects/asm/nasm/src/main.S -------------------------------------------------------------------------------- /tests/projects/asm/nasm/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/projects/asm/nasm/xmake.lua -------------------------------------------------------------------------------- /tests/projects/asm/yasm/src/main.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/projects/asm/yasm/src/main.S -------------------------------------------------------------------------------- /tests/projects/asm/yasm/src/stub.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/projects/asm/yasm/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/projects/asm/yasm/xmake.lua -------------------------------------------------------------------------------- /tests/projects/c++/console/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/c++/doctest/src/foo.cpp: -------------------------------------------------------------------------------- 1 | void foo() { 2 | } 3 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/aliased_headerunit/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_headerunits") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/class/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/class_cmake/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_cmake") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/cpp_with_moduledeps/src/mod.cpp: -------------------------------------------------------------------------------- 1 | module mod; 2 | void f() 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/cpp_with_moduledeps/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/culling/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_culling") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/culling2/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_culling") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/culling3/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_culling") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/dependence/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/dependence2/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/dependency_flag_update/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_dependency_scanner") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/dependency_flag_update2/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_dependency_scanner") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/duplicate_name_detection/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_duplicate_modules") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/headerunits_person/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_headerunits") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/hello with spaces/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/hello/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/hello_mpp/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/hello_with_pch/src/test.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/hide_dependency_flags/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/ifdef_module/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/impl_unit/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/include-dirs/include/foo.h: -------------------------------------------------------------------------------- 1 | inline int foo() { return 0; } 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/include-dirs/src/main.cpp: -------------------------------------------------------------------------------- 1 | import bar; 2 | 3 | int main() { 4 | return bar(); 5 | } 6 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/include-dirs/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/inline_and_template/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/internal_partition/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_partitions") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/moduleonly/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/namespace/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/namespace2/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/packages-subtarget/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/packages/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/partitions/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_partitions") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/partitions_implunit/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_partitions") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/partitions_implunit2/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_partitions") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/phony/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/phony2/include/foo.h: -------------------------------------------------------------------------------- 1 | inline int foo() { 2 | return 5; 3 | } 4 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/phony2/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/private_module/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/staticlib/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/staticlib2/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/stdmodules/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_stdmodules") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/stdmodules_cpp_only/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_stdmodules") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/stdmodules_deps/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_stdmodules") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/stdmodules_multiple_targets/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_stdmodules") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/stl_headerunit/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_headerunits") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/stl_headerunit_cpp_only/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_headerunits") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/submodules/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/submodules2/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_base") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/user_headerunit/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_headerunits") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/modules/user_headerunit2/a/c.hpp: -------------------------------------------------------------------------------- 1 | #pragma once -------------------------------------------------------------------------------- /tests/projects/c++/modules/user_headerunit2/a/d.hpp: -------------------------------------------------------------------------------- 1 | #pragma once -------------------------------------------------------------------------------- /tests/projects/c++/modules/user_headerunit2/test.lua: -------------------------------------------------------------------------------- 1 | inherit(".test_headerunits") 2 | -------------------------------------------------------------------------------- /tests/projects/c++/precompiled_header/src/header2.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/projects/c++/precompiled_header/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/c++/shared_library/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/c++/shared_library_export_all/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/c++/shared_library_with_soname/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/c++/static_library/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/c++/test(brackets)/inc(brackets)/test.h: -------------------------------------------------------------------------------- 1 | #define TEST "hello" 2 | -------------------------------------------------------------------------------- /tests/projects/c++/test(brackets)/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/c++/unity_build/src/header2.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/projects/c++/unity_build/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/c/Unicode 测试/头文件✨/标头🎟.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void hello(); -------------------------------------------------------------------------------- /tests/projects/c/console/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/c/embeddirs/assets/message.txt: -------------------------------------------------------------------------------- 1 | Hello from an embedded C23 file! 2 | -------------------------------------------------------------------------------- /tests/projects/c/headeronly/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/c/linker_scripts/src/foo.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | foo 3 | -------------------------------------------------------------------------------- /tests/projects/c/linker_scripts/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/c/precompiled_header/src/test.cpp: -------------------------------------------------------------------------------- 1 | int test_cpp() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/projects/c/precompiled_header/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/c/shared_library/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/c/shared_library_export_all/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/c/shared_library_export_list/src/foo.export.txt: -------------------------------------------------------------------------------- 1 | add 2 | sub 3 | -------------------------------------------------------------------------------- /tests/projects/c/shared_library_export_list/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/c/static library with spaces/i n c/stdafx.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/projects/c/static library with spaces/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/c/static_library/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/c/unity_build/src/test.cpp: -------------------------------------------------------------------------------- 1 | int test_cpp() 2 | { 3 | return 0; 4 | } 5 | -------------------------------------------------------------------------------- /tests/projects/c/unity_build/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/embed/mdk/hello/src/foo/foo.c: -------------------------------------------------------------------------------- 1 | int foo(int x) 2 | { 3 | return x; 4 | } 5 | -------------------------------------------------------------------------------- /tests/projects/hybrid/static_library/src/test5.d: -------------------------------------------------------------------------------- 1 | 2 | extern(C) int test5() { 3 | return 5; 4 | } 5 | -------------------------------------------------------------------------------- /tests/projects/kotlin-native/console/src/main.kt: -------------------------------------------------------------------------------- 1 | fun main() { 2 | println("hello xmake!") 3 | } 4 | -------------------------------------------------------------------------------- /tests/projects/lex_yacc/src/test.c: -------------------------------------------------------------------------------- 1 | #include "calc.tab.h" 2 | void test() 3 | { 4 | } 5 | -------------------------------------------------------------------------------- /tests/projects/nim/console/src/main.nim: -------------------------------------------------------------------------------- 1 | echo "hello xmake!" 2 | -------------------------------------------------------------------------------- /tests/projects/objc++/precompiled_header/src/header2.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/projects/other/autogen/autogen_binary_module/src/data.in: -------------------------------------------------------------------------------- 1 | hello world! 2 | -------------------------------------------------------------------------------- /tests/projects/other/autogen/autogen_binary_module/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/other/autogen/autogen_code/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/other/autogen/autogen_codedep/src/data.in: -------------------------------------------------------------------------------- 1 | hello world! 2 | -------------------------------------------------------------------------------- /tests/projects/other/autogen/autogen_codedep/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/other/autogen/autogen_shared_module/src/data.in: -------------------------------------------------------------------------------- 1 | hello world! 2 | -------------------------------------------------------------------------------- /tests/projects/other/autogen/autogen_shared_module/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/other/bin2c/src/data.bin: -------------------------------------------------------------------------------- 1 | hello xmake! 2 | -------------------------------------------------------------------------------- /tests/projects/other/bin2c/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/other/bin2obj/src/data.bin: -------------------------------------------------------------------------------- 1 | hello xmake! 2 | -------------------------------------------------------------------------------- /tests/projects/other/bin2obj/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | 5 | -------------------------------------------------------------------------------- /tests/projects/other/build_deps/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/other/ispc/src/test.ispc: -------------------------------------------------------------------------------- 1 | export void test_ispc() {} -------------------------------------------------------------------------------- /tests/projects/other/merge_object/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/other/multiplats_vs/src/test.asm: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/projects/other/multiplats_vs/src/test.rc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/projects/other/native_module/cjson/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/other/native_module/hello/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/other/object_only/test.lua: -------------------------------------------------------------------------------- 1 | function main(t) 2 | t:build() 3 | end 4 | -------------------------------------------------------------------------------- /tests/projects/package/package_rule/src/test.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/projects/python/cython/example/src/example.py: -------------------------------------------------------------------------------- 1 | print("Hello, world!") 2 | -------------------------------------------------------------------------------- /tests/projects/rust/console/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("hello xmake!"); 3 | } 4 | -------------------------------------------------------------------------------- /tests/projects/swift/console/src/main.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | print("hello world!") 4 | -------------------------------------------------------------------------------- /tests/projects/swift/cross_modules/src/main.swift: -------------------------------------------------------------------------------- 1 | 2 | test() 3 | -------------------------------------------------------------------------------- /tests/projects/windows/driver/kmdf/serial/precompsrc.c: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /tests/projects/windows/driver/wdm/msdsm/precompsrc.c: -------------------------------------------------------------------------------- 1 | #include "precomp.h" -------------------------------------------------------------------------------- /tests/projects/windows/driver/wdm/perfcounters/kcs.rc: -------------------------------------------------------------------------------- 1 | #include "kcsCounters.rc" 2 | -------------------------------------------------------------------------------- /tests/projects/windows/winsdk/windemo/test.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /tests/run.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/run.lua -------------------------------------------------------------------------------- /tests/runner.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/runner.lua -------------------------------------------------------------------------------- /tests/test/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/test/test.lua -------------------------------------------------------------------------------- /tests/test_utils/check.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/test_utils/check.lua -------------------------------------------------------------------------------- /tests/test_utils/context.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/test_utils/context.lua -------------------------------------------------------------------------------- /tests/test_utils/test_build.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/test_utils/test_build.lua -------------------------------------------------------------------------------- /tests/test_utils/test_skip.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/test_utils/test_skip.lua -------------------------------------------------------------------------------- /tests/ui/desktop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/ui/desktop.lua -------------------------------------------------------------------------------- /tests/ui/dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/ui/dialog.lua -------------------------------------------------------------------------------- /tests/ui/events.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/ui/events.lua -------------------------------------------------------------------------------- /tests/ui/inputdialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/ui/inputdialog.lua -------------------------------------------------------------------------------- /tests/ui/mconfdialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/ui/mconfdialog.lua -------------------------------------------------------------------------------- /tests/ui/utf8dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/ui/utf8dialog.lua -------------------------------------------------------------------------------- /tests/ui/window.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/tests/ui/window.lua -------------------------------------------------------------------------------- /xmake/actions/build/build.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/build/build.lua -------------------------------------------------------------------------------- /xmake/actions/build/check.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/build/check.lua -------------------------------------------------------------------------------- /xmake/actions/build/cleaner.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/build/cleaner.lua -------------------------------------------------------------------------------- /xmake/actions/build/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/build/main.lua -------------------------------------------------------------------------------- /xmake/actions/build/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/build/xmake.lua -------------------------------------------------------------------------------- /xmake/actions/clean/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/clean/main.lua -------------------------------------------------------------------------------- /xmake/actions/clean/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/clean/xmake.lua -------------------------------------------------------------------------------- /xmake/actions/config/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/config/main.lua -------------------------------------------------------------------------------- /xmake/actions/config/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/config/xmake.lua -------------------------------------------------------------------------------- /xmake/actions/create/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/create/main.lua -------------------------------------------------------------------------------- /xmake/actions/create/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/create/xmake.lua -------------------------------------------------------------------------------- /xmake/actions/global/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/global/main.lua -------------------------------------------------------------------------------- /xmake/actions/global/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/global/xmake.lua -------------------------------------------------------------------------------- /xmake/actions/install/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/install/main.lua -------------------------------------------------------------------------------- /xmake/actions/install/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/install/xmake.lua -------------------------------------------------------------------------------- /xmake/actions/package/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/package/main.lua -------------------------------------------------------------------------------- /xmake/actions/package/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/package/xmake.lua -------------------------------------------------------------------------------- /xmake/actions/require/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/require/main.lua -------------------------------------------------------------------------------- /xmake/actions/require/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/require/xmake.lua -------------------------------------------------------------------------------- /xmake/actions/run/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/run/main.lua -------------------------------------------------------------------------------- /xmake/actions/run/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/run/xmake.lua -------------------------------------------------------------------------------- /xmake/actions/service/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/service/main.lua -------------------------------------------------------------------------------- /xmake/actions/service/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/service/xmake.lua -------------------------------------------------------------------------------- /xmake/actions/test/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/test/main.lua -------------------------------------------------------------------------------- /xmake/actions/test/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/test/xmake.lua -------------------------------------------------------------------------------- /xmake/actions/update/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/update/main.lua -------------------------------------------------------------------------------- /xmake/actions/update/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/actions/update/xmake.lua -------------------------------------------------------------------------------- /xmake/core/_xmake_main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/_xmake_main.lua -------------------------------------------------------------------------------- /xmake/core/base/base64.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/base64.lua -------------------------------------------------------------------------------- /xmake/core/base/binutils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/binutils.lua -------------------------------------------------------------------------------- /xmake/core/base/bit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/bit.lua -------------------------------------------------------------------------------- /xmake/core/base/bytes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/bytes.lua -------------------------------------------------------------------------------- /xmake/core/base/cli.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/cli.lua -------------------------------------------------------------------------------- /xmake/core/base/colors.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/colors.lua -------------------------------------------------------------------------------- /xmake/core/base/compat/bit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/compat/bit.lua -------------------------------------------------------------------------------- /xmake/core/base/compat/env.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/compat/env.lua -------------------------------------------------------------------------------- /xmake/core/base/coroutine.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/coroutine.lua -------------------------------------------------------------------------------- /xmake/core/base/cpu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/cpu.lua -------------------------------------------------------------------------------- /xmake/core/base/debugger.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/debugger.lua -------------------------------------------------------------------------------- /xmake/core/base/deprecated.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/deprecated.lua -------------------------------------------------------------------------------- /xmake/core/base/dump.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/dump.lua -------------------------------------------------------------------------------- /xmake/core/base/emoji.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/emoji.lua -------------------------------------------------------------------------------- /xmake/core/base/filter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/filter.lua -------------------------------------------------------------------------------- /xmake/core/base/fwatcher.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/fwatcher.lua -------------------------------------------------------------------------------- /xmake/core/base/global.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/global.lua -------------------------------------------------------------------------------- /xmake/core/base/graph.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/graph.lua -------------------------------------------------------------------------------- /xmake/core/base/hash.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/hash.lua -------------------------------------------------------------------------------- /xmake/core/base/hashset.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/hashset.lua -------------------------------------------------------------------------------- /xmake/core/base/heap.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/heap.lua -------------------------------------------------------------------------------- /xmake/core/base/interpreter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/interpreter.lua -------------------------------------------------------------------------------- /xmake/core/base/io.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/io.lua -------------------------------------------------------------------------------- /xmake/core/base/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/json.lua -------------------------------------------------------------------------------- /xmake/core/base/libc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/libc.lua -------------------------------------------------------------------------------- /xmake/core/base/linuxos.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/linuxos.lua -------------------------------------------------------------------------------- /xmake/core/base/list.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/list.lua -------------------------------------------------------------------------------- /xmake/core/base/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/log.lua -------------------------------------------------------------------------------- /xmake/core/base/macos.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/macos.lua -------------------------------------------------------------------------------- /xmake/core/base/math.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/math.lua -------------------------------------------------------------------------------- /xmake/core/base/memory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/memory.lua -------------------------------------------------------------------------------- /xmake/core/base/object.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/object.lua -------------------------------------------------------------------------------- /xmake/core/base/option.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/option.lua -------------------------------------------------------------------------------- /xmake/core/base/os.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/os.lua -------------------------------------------------------------------------------- /xmake/core/base/path.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/path.lua -------------------------------------------------------------------------------- /xmake/core/base/pipe.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/pipe.lua -------------------------------------------------------------------------------- /xmake/core/base/poller.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/poller.lua -------------------------------------------------------------------------------- /xmake/core/base/privilege.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/privilege.lua -------------------------------------------------------------------------------- /xmake/core/base/process.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/process.lua -------------------------------------------------------------------------------- /xmake/core/base/profiler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/profiler.lua -------------------------------------------------------------------------------- /xmake/core/base/queue.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/queue.lua -------------------------------------------------------------------------------- /xmake/core/base/scheduler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/scheduler.lua -------------------------------------------------------------------------------- /xmake/core/base/scopeinfo.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/scopeinfo.lua -------------------------------------------------------------------------------- /xmake/core/base/semver.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/semver.lua -------------------------------------------------------------------------------- /xmake/core/base/serialize.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/serialize.lua -------------------------------------------------------------------------------- /xmake/core/base/signal.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/signal.lua -------------------------------------------------------------------------------- /xmake/core/base/singleton.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/singleton.lua -------------------------------------------------------------------------------- /xmake/core/base/socket.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/socket.lua -------------------------------------------------------------------------------- /xmake/core/base/string.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/string.lua -------------------------------------------------------------------------------- /xmake/core/base/table.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/table.lua -------------------------------------------------------------------------------- /xmake/core/base/task.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/task.lua -------------------------------------------------------------------------------- /xmake/core/base/text.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/text.lua -------------------------------------------------------------------------------- /xmake/core/base/thread.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/thread.lua -------------------------------------------------------------------------------- /xmake/core/base/timer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/timer.lua -------------------------------------------------------------------------------- /xmake/core/base/todisplay.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/todisplay.lua -------------------------------------------------------------------------------- /xmake/core/base/tty.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/tty.lua -------------------------------------------------------------------------------- /xmake/core/base/utils.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/utils.lua -------------------------------------------------------------------------------- /xmake/core/base/winos.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/winos.lua -------------------------------------------------------------------------------- /xmake/core/base/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/xmake.lua -------------------------------------------------------------------------------- /xmake/core/base/xml.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/base/xml.lua -------------------------------------------------------------------------------- /xmake/core/cache/localcache.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/cache/localcache.lua -------------------------------------------------------------------------------- /xmake/core/cache/memcache.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/cache/memcache.lua -------------------------------------------------------------------------------- /xmake/core/compress/lz4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/compress/lz4.lua -------------------------------------------------------------------------------- /xmake/core/language/menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/language/menu.lua -------------------------------------------------------------------------------- /xmake/core/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/main.lua -------------------------------------------------------------------------------- /xmake/core/package/package.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/package/package.lua -------------------------------------------------------------------------------- /xmake/core/platform/menu.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/platform/menu.lua -------------------------------------------------------------------------------- /xmake/core/project/cache.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/project/cache.lua -------------------------------------------------------------------------------- /xmake/core/project/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/project/config.lua -------------------------------------------------------------------------------- /xmake/core/project/option.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/project/option.lua -------------------------------------------------------------------------------- /xmake/core/project/package.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/project/package.lua -------------------------------------------------------------------------------- /xmake/core/project/policy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/project/policy.lua -------------------------------------------------------------------------------- /xmake/core/project/project.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/project/project.lua -------------------------------------------------------------------------------- /xmake/core/project/rule.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/project/rule.lua -------------------------------------------------------------------------------- /xmake/core/project/target.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/project/target.lua -------------------------------------------------------------------------------- /xmake/core/project/template.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/project/template.lua -------------------------------------------------------------------------------- /xmake/core/sandbox/sandbox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/sandbox/sandbox.lua -------------------------------------------------------------------------------- /xmake/core/theme/theme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/theme/theme.lua -------------------------------------------------------------------------------- /xmake/core/tool/builder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/tool/builder.lua -------------------------------------------------------------------------------- /xmake/core/tool/compiler.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/tool/compiler.lua -------------------------------------------------------------------------------- /xmake/core/tool/linker.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/tool/linker.lua -------------------------------------------------------------------------------- /xmake/core/tool/tool.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/tool/tool.lua -------------------------------------------------------------------------------- /xmake/core/tool/toolchain.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/tool/toolchain.lua -------------------------------------------------------------------------------- /xmake/core/ui/action.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/action.lua -------------------------------------------------------------------------------- /xmake/core/ui/application.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/application.lua -------------------------------------------------------------------------------- /xmake/core/ui/border.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/border.lua -------------------------------------------------------------------------------- /xmake/core/ui/boxdialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/boxdialog.lua -------------------------------------------------------------------------------- /xmake/core/ui/button.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/button.lua -------------------------------------------------------------------------------- /xmake/core/ui/canvas.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/canvas.lua -------------------------------------------------------------------------------- /xmake/core/ui/choicebox.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/choicebox.lua -------------------------------------------------------------------------------- /xmake/core/ui/choicedialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/choicedialog.lua -------------------------------------------------------------------------------- /xmake/core/ui/curses.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/curses.lua -------------------------------------------------------------------------------- /xmake/core/ui/desktop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/desktop.lua -------------------------------------------------------------------------------- /xmake/core/ui/dialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/dialog.lua -------------------------------------------------------------------------------- /xmake/core/ui/event.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/event.lua -------------------------------------------------------------------------------- /xmake/core/ui/inputdialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/inputdialog.lua -------------------------------------------------------------------------------- /xmake/core/ui/label.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/label.lua -------------------------------------------------------------------------------- /xmake/core/ui/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/log.lua -------------------------------------------------------------------------------- /xmake/core/ui/mconfdialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/mconfdialog.lua -------------------------------------------------------------------------------- /xmake/core/ui/menubar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/menubar.lua -------------------------------------------------------------------------------- /xmake/core/ui/menuconf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/menuconf.lua -------------------------------------------------------------------------------- /xmake/core/ui/object.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/object.lua -------------------------------------------------------------------------------- /xmake/core/ui/panel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/panel.lua -------------------------------------------------------------------------------- /xmake/core/ui/point.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/point.lua -------------------------------------------------------------------------------- /xmake/core/ui/program.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/program.lua -------------------------------------------------------------------------------- /xmake/core/ui/rect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/rect.lua -------------------------------------------------------------------------------- /xmake/core/ui/scrollbar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/scrollbar.lua -------------------------------------------------------------------------------- /xmake/core/ui/statusbar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/statusbar.lua -------------------------------------------------------------------------------- /xmake/core/ui/textarea.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/textarea.lua -------------------------------------------------------------------------------- /xmake/core/ui/textdialog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/textdialog.lua -------------------------------------------------------------------------------- /xmake/core/ui/textedit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/textedit.lua -------------------------------------------------------------------------------- /xmake/core/ui/view.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/view.lua -------------------------------------------------------------------------------- /xmake/core/ui/window.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/core/ui/window.lua -------------------------------------------------------------------------------- /xmake/includes/check/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/includes/check/xmake.lua -------------------------------------------------------------------------------- /xmake/includes/qt/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/includes/qt/xmake.lua -------------------------------------------------------------------------------- /xmake/includes/xpack/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/includes/xpack/xmake.lua -------------------------------------------------------------------------------- /xmake/includes/xrepo/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/includes/xrepo/xmake.lua -------------------------------------------------------------------------------- /xmake/languages/asm/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/asm/load.lua -------------------------------------------------------------------------------- /xmake/languages/asm/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/asm/xmake.lua -------------------------------------------------------------------------------- /xmake/languages/c++/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/c++/load.lua -------------------------------------------------------------------------------- /xmake/languages/c++/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/c++/xmake.lua -------------------------------------------------------------------------------- /xmake/languages/c/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/c/load.lua -------------------------------------------------------------------------------- /xmake/languages/c/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/c/xmake.lua -------------------------------------------------------------------------------- /xmake/languages/cuda/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/cuda/load.lua -------------------------------------------------------------------------------- /xmake/languages/cuda/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/cuda/xmake.lua -------------------------------------------------------------------------------- /xmake/languages/dlang/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/dlang/load.lua -------------------------------------------------------------------------------- /xmake/languages/dlang/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/dlang/xmake.lua -------------------------------------------------------------------------------- /xmake/languages/golang/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/golang/load.lua -------------------------------------------------------------------------------- /xmake/languages/kotlin/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/kotlin/load.lua -------------------------------------------------------------------------------- /xmake/languages/msrc/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/msrc/load.lua -------------------------------------------------------------------------------- /xmake/languages/msrc/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/msrc/xmake.lua -------------------------------------------------------------------------------- /xmake/languages/nim/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/nim/load.lua -------------------------------------------------------------------------------- /xmake/languages/nim/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/nim/xmake.lua -------------------------------------------------------------------------------- /xmake/languages/objc++/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/objc++/load.lua -------------------------------------------------------------------------------- /xmake/languages/pascal/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/pascal/load.lua -------------------------------------------------------------------------------- /xmake/languages/rust/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/rust/load.lua -------------------------------------------------------------------------------- /xmake/languages/rust/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/rust/xmake.lua -------------------------------------------------------------------------------- /xmake/languages/swift/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/swift/load.lua -------------------------------------------------------------------------------- /xmake/languages/swift/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/swift/xmake.lua -------------------------------------------------------------------------------- /xmake/languages/zig/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/zig/load.lua -------------------------------------------------------------------------------- /xmake/languages/zig/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/languages/zig/xmake.lua -------------------------------------------------------------------------------- /xmake/modules/async/runjobs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/modules/async/runjobs.lua -------------------------------------------------------------------------------- /xmake/modules/cli/archive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/modules/cli/archive.lua -------------------------------------------------------------------------------- /xmake/modules/cli/bisect.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/modules/cli/bisect.lua -------------------------------------------------------------------------------- /xmake/modules/cli/extract.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/modules/cli/extract.lua -------------------------------------------------------------------------------- /xmake/modules/core/tools/ar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/modules/core/tools/ar.lua -------------------------------------------------------------------------------- /xmake/modules/core/tools/cc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/modules/core/tools/cc.lua -------------------------------------------------------------------------------- /xmake/modules/core/tools/cl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/modules/core/tools/cl.lua -------------------------------------------------------------------------------- /xmake/modules/core/tools/go.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/modules/core/tools/go.lua -------------------------------------------------------------------------------- /xmake/modules/core/tools/ld.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/modules/core/tools/ld.lua -------------------------------------------------------------------------------- /xmake/modules/core/tools/ml.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/modules/core/tools/ml.lua -------------------------------------------------------------------------------- /xmake/modules/core/tools/rc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/modules/core/tools/rc.lua -------------------------------------------------------------------------------- /xmake/modules/net/fasturl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/modules/net/fasturl.lua -------------------------------------------------------------------------------- /xmake/modules/net/ping.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/modules/net/ping.lua -------------------------------------------------------------------------------- /xmake/modules/net/proxy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/modules/net/proxy.lua -------------------------------------------------------------------------------- /xmake/modules/os/winver.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/modules/os/winver.lua -------------------------------------------------------------------------------- /xmake/platforms/bsd/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/platforms/bsd/xmake.lua -------------------------------------------------------------------------------- /xmake/platforms/cross/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/platforms/cross/xmake.lua -------------------------------------------------------------------------------- /xmake/platforms/haiku/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/platforms/haiku/xmake.lua -------------------------------------------------------------------------------- /xmake/platforms/linux/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/platforms/linux/xmake.lua -------------------------------------------------------------------------------- /xmake/platforms/mingw/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/platforms/mingw/xmake.lua -------------------------------------------------------------------------------- /xmake/platforms/msys/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/platforms/msys/xmake.lua -------------------------------------------------------------------------------- /xmake/platforms/wasm/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/platforms/wasm/xmake.lua -------------------------------------------------------------------------------- /xmake/plugins/check/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/check/main.lua -------------------------------------------------------------------------------- /xmake/plugins/check/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/check/xmake.lua -------------------------------------------------------------------------------- /xmake/plugins/doxygen/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/doxygen/main.lua -------------------------------------------------------------------------------- /xmake/plugins/doxygen/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/doxygen/xmake.lua -------------------------------------------------------------------------------- /xmake/plugins/format/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/format/main.lua -------------------------------------------------------------------------------- /xmake/plugins/format/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/format/xmake.lua -------------------------------------------------------------------------------- /xmake/plugins/lua/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/lua/main.lua -------------------------------------------------------------------------------- /xmake/plugins/lua/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/lua/xmake.lua -------------------------------------------------------------------------------- /xmake/plugins/macro/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/macro/main.lua -------------------------------------------------------------------------------- /xmake/plugins/macro/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/macro/xmake.lua -------------------------------------------------------------------------------- /xmake/plugins/pack/archive.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/pack/archive.lua -------------------------------------------------------------------------------- /xmake/plugins/pack/deb/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/pack/deb/main.lua -------------------------------------------------------------------------------- /xmake/plugins/pack/dmg/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/pack/dmg/main.lua -------------------------------------------------------------------------------- /xmake/plugins/pack/filter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/pack/filter.lua -------------------------------------------------------------------------------- /xmake/plugins/pack/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/pack/main.lua -------------------------------------------------------------------------------- /xmake/plugins/pack/rpm/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/pack/rpm/main.lua -------------------------------------------------------------------------------- /xmake/plugins/pack/wix/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/pack/wix/main.lua -------------------------------------------------------------------------------- /xmake/plugins/pack/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/pack/xmake.lua -------------------------------------------------------------------------------- /xmake/plugins/pack/xpack.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/pack/xpack.lua -------------------------------------------------------------------------------- /xmake/plugins/pack/zip/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/pack/zip/main.lua -------------------------------------------------------------------------------- /xmake/plugins/plugin/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/plugin/main.lua -------------------------------------------------------------------------------- /xmake/plugins/plugin/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/plugin/xmake.lua -------------------------------------------------------------------------------- /xmake/plugins/project/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/project/main.lua -------------------------------------------------------------------------------- /xmake/plugins/project/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/project/xmake.lua -------------------------------------------------------------------------------- /xmake/plugins/repo/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/repo/main.lua -------------------------------------------------------------------------------- /xmake/plugins/repo/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/repo/xmake.lua -------------------------------------------------------------------------------- /xmake/plugins/show/list.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/show/list.lua -------------------------------------------------------------------------------- /xmake/plugins/show/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/show/main.lua -------------------------------------------------------------------------------- /xmake/plugins/show/showlist.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/show/showlist.lua -------------------------------------------------------------------------------- /xmake/plugins/show/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/show/xmake.lua -------------------------------------------------------------------------------- /xmake/plugins/watch/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/watch/main.lua -------------------------------------------------------------------------------- /xmake/plugins/watch/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/plugins/watch/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/asm/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/asm/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/asn1c/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/asn1c/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/c++/config/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/c++/config/main.lua -------------------------------------------------------------------------------- /xmake/rules/c++/openmp/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/c++/openmp/load.lua -------------------------------------------------------------------------------- /xmake/rules/c++/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/c++/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/c51/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/c51/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/capnproto/capnp.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/capnproto/capnp.lua -------------------------------------------------------------------------------- /xmake/rules/capnproto/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/capnproto/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/cppfront/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/cppfront/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/cuda/env/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/cuda/env/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/cuda/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/cuda/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/dlang/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/dlang/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/fortran/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/fortran/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/gnu-rm/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/gnu-rm/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/go/build/target.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/go/build/target.lua -------------------------------------------------------------------------------- /xmake/rules/go/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/go/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/iverilog/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/iverilog/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/linker/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/linker/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/mdk/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/mdk/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/mode/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/mode/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/module/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/module/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/nim/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/nim/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/objc++/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/objc++/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/pascal/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/pascal/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/platform/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/platform/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/protobuf/proto.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/protobuf/proto.lua -------------------------------------------------------------------------------- /xmake/rules/protobuf/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/protobuf/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/qt/env/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/qt/env/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/qt/installcmd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/qt/installcmd.lua -------------------------------------------------------------------------------- /xmake/rules/qt/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/qt/load.lua -------------------------------------------------------------------------------- /xmake/rules/qt/moc/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/qt/moc/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/qt/qrc/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/qt/qrc/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/qt/ts/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/qt/ts/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/qt/ui/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/qt/ui/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/qt/uninstallcmd.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/qt/uninstallcmd.lua -------------------------------------------------------------------------------- /xmake/rules/qt/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/qt/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/rust/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/rust/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/swift/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/swift/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/swig/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/swig/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/vala/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/vala/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/verilator/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/verilator/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/wdk/env/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/wdk/env/load.lua -------------------------------------------------------------------------------- /xmake/rules/wdk/env/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/wdk/env/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/wdk/inf/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/wdk/inf/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/wdk/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/wdk/load.lua -------------------------------------------------------------------------------- /xmake/rules/wdk/man/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/wdk/man/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/wdk/mc/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/wdk/mc/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/wdk/mof/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/wdk/mof/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/wdk/sign/sign.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/wdk/sign/sign.lua -------------------------------------------------------------------------------- /xmake/rules/wdk/sign/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/wdk/sign/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/wdk/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/wdk/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/winsdk/mfc/mfc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/winsdk/mfc/mfc.lua -------------------------------------------------------------------------------- /xmake/rules/winsdk/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/winsdk/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/xmake_cli/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/xmake_cli/xmake.lua -------------------------------------------------------------------------------- /xmake/rules/zig/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/rules/zig/xmake.lua -------------------------------------------------------------------------------- /xmake/scripts/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /xmake/scripts/download.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/scripts/download.ps1 -------------------------------------------------------------------------------- /xmake/scripts/faq.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/scripts/faq.lua -------------------------------------------------------------------------------- /xmake/scripts/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/scripts/gitignore -------------------------------------------------------------------------------- /xmake/scripts/module/xmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/scripts/module/xmi.h -------------------------------------------------------------------------------- /xmake/scripts/profile-unix.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/scripts/profile-unix.fish -------------------------------------------------------------------------------- /xmake/scripts/profile-unix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/scripts/profile-unix.sh -------------------------------------------------------------------------------- /xmake/scripts/profile-win.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/scripts/profile-win.ps1 -------------------------------------------------------------------------------- /xmake/scripts/run.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/scripts/run.vbs -------------------------------------------------------------------------------- /xmake/scripts/unzip.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/scripts/unzip.ps1 -------------------------------------------------------------------------------- /xmake/scripts/update-script.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/scripts/update-script.bat -------------------------------------------------------------------------------- /xmake/scripts/update-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/scripts/update-script.sh -------------------------------------------------------------------------------- /xmake/scripts/vsxmake/vsproj/templates/vcxproj/File.cu(filecu): -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xmake/scripts/vsxmake/vsproj/templates/vcxproj/File.obj(fileobj): -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xmake/scripts/vsxmake/vsproj/templates/vcxproj/File.qrc(fileqrc): -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xmake/scripts/vsxmake/vsproj/templates/vcxproj/File.rc(filerc): -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xmake/scripts/vsxmake/vsproj/templates/vcxproj/File.ts(filets): -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xmake/scripts/vsxmake/vsproj/templates/vcxproj/File.ui(fileui): -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /xmake/scripts/xpack/deb/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /xmake/scripts/xpack/runself/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /xmake/scripts/xpack/wix/msi.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/scripts/xpack/wix/msi.wxs -------------------------------------------------------------------------------- /xmake/scripts/xrepo-hook.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/scripts/xrepo-hook.psm1 -------------------------------------------------------------------------------- /xmake/scripts/xrepo/envs/depot_tools.lua: -------------------------------------------------------------------------------- 1 | add_requires("depot_tools") 2 | -------------------------------------------------------------------------------- /xmake/scripts/xrepo/envs/llvm-mingw.lua: -------------------------------------------------------------------------------- 1 | add_requires("llvm-mingw") 2 | -------------------------------------------------------------------------------- /xmake/scripts/xrepo/envs/llvm.lua: -------------------------------------------------------------------------------- 1 | add_requires("llvm") 2 | -------------------------------------------------------------------------------- /xmake/scripts/xrepo/envs/mingw-w64.lua: -------------------------------------------------------------------------------- 1 | add_requires("mingw-w64") 2 | -------------------------------------------------------------------------------- /xmake/scripts/xrepo/envs/msys2.lua: -------------------------------------------------------------------------------- 1 | add_requires("msys2", {configs = {base_devel = true}}) 2 | -------------------------------------------------------------------------------- /xmake/scripts/xrepo/envs/python2.lua: -------------------------------------------------------------------------------- 1 | add_requires("python 2.x") 2 | -------------------------------------------------------------------------------- /xmake/templates/kotlin/console/project/src/main.kt: -------------------------------------------------------------------------------- 1 | fun main() { 2 | println("hello xmake!") 3 | } 4 | -------------------------------------------------------------------------------- /xmake/templates/nim/console/project/src/main.nim: -------------------------------------------------------------------------------- 1 | echo "hello xmake!" 2 | -------------------------------------------------------------------------------- /xmake/templates/rust/console/project/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("hello xmake!"); 3 | } 4 | -------------------------------------------------------------------------------- /xmake/templates/swift/console/project/src/main.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | print("hello world!") 4 | -------------------------------------------------------------------------------- /xmake/themes/dark/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/themes/dark/xmake.lua -------------------------------------------------------------------------------- /xmake/themes/default/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/themes/default/xmake.lua -------------------------------------------------------------------------------- /xmake/themes/emoji/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/themes/emoji/xmake.lua -------------------------------------------------------------------------------- /xmake/themes/light/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/themes/light/xmake.lua -------------------------------------------------------------------------------- /xmake/themes/ninja/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/themes/ninja/xmake.lua -------------------------------------------------------------------------------- /xmake/themes/plain/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/themes/plain/xmake.lua -------------------------------------------------------------------------------- /xmake/themes/soong/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/themes/soong/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/c51/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/c51/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/clang/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/clang/load.lua -------------------------------------------------------------------------------- /xmake/toolchains/cross/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/cross/load.lua -------------------------------------------------------------------------------- /xmake/toolchains/cuda/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/cuda/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/dmd/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/dmd/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/dpcpp/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/dpcpp/load.lua -------------------------------------------------------------------------------- /xmake/toolchains/emcc/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/emcc/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/envs/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/envs/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/fasm/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/fasm/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/fpc/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/fpc/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/gcc/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/gcc/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/gdc/check.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/gdc/check.lua -------------------------------------------------------------------------------- /xmake/toolchains/gdc/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/gdc/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/go/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/go/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/hdk/check.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/hdk/check.lua -------------------------------------------------------------------------------- /xmake/toolchains/hdk/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/hdk/load.lua -------------------------------------------------------------------------------- /xmake/toolchains/hdk/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/hdk/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/icc/check.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/icc/check.lua -------------------------------------------------------------------------------- /xmake/toolchains/icc/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/icc/load.lua -------------------------------------------------------------------------------- /xmake/toolchains/icc/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/icc/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/icx/check.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/icx/check.lua -------------------------------------------------------------------------------- /xmake/toolchains/icx/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/icx/load.lua -------------------------------------------------------------------------------- /xmake/toolchains/icx/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/icx/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/ifort/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/ifort/load.lua -------------------------------------------------------------------------------- /xmake/toolchains/ifx/check.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/ifx/check.lua -------------------------------------------------------------------------------- /xmake/toolchains/ifx/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/ifx/load.lua -------------------------------------------------------------------------------- /xmake/toolchains/ifx/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/ifx/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/ldc/check.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/ldc/check.lua -------------------------------------------------------------------------------- /xmake/toolchains/ldc/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/ldc/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/llvm/check.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/llvm/check.lua -------------------------------------------------------------------------------- /xmake/toolchains/llvm/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/llvm/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/msvc/check.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/msvc/check.lua -------------------------------------------------------------------------------- /xmake/toolchains/msvc/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/msvc/load.lua -------------------------------------------------------------------------------- /xmake/toolchains/msvc/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/msvc/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/nasm/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/nasm/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/ndk/check.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/ndk/check.lua -------------------------------------------------------------------------------- /xmake/toolchains/ndk/load.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/ndk/load.lua -------------------------------------------------------------------------------- /xmake/toolchains/ndk/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/ndk/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/nim/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/nim/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/rust/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/rust/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/sdcc/check.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/sdcc/check.lua -------------------------------------------------------------------------------- /xmake/toolchains/sdcc/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/sdcc/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/wasi/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/wasi/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/yasm/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/yasm/xmake.lua -------------------------------------------------------------------------------- /xmake/toolchains/zig/xmake.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmake-io/xmake/HEAD/xmake/toolchains/zig/xmake.lua --------------------------------------------------------------------------------