選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Sam Hocevar f6c386f560 Allow to build without Bullet Physics. 6年前
..
bullet3 @ 764822241e Update bullet3 to a more recent Git head. 7年前
imgui @ 6742ac4587 imgui: update submodule to a cleaner branch. 8年前
lua @ 167fe0b5ef build: improvements when building as a subproject 8年前
mingw-std-threads @ 10665829da Update pegtl and mingw-std-threads submodules. 7年前
pegtl @ 4c1c88bb0b Update pegtl and mingw-std-threads submodules. 7年前
Makefile.am Allow to build without Bullet Physics. 6年前
README.md Fix build with Visual Studio 2017. 7年前
lol-bullet.am Update bullet3 to a more recent Git head. 7年前
lol-bullet.vcxproj Fix build with Visual Studio 2017. 7年前
lol-bullet.vcxproj.filters build: move Bullet to a submodule 8年前
lol-imgui.am build: add several missing distributed files for Windows versions. 7年前
lol-lua.am build: minor file renaming 8年前
lol-lua.vcxproj Migrate to Visual Studio 2017. 7年前
lol-lua.vcxproj.filters build: move Lua to a submodule 8年前
lol-mingw-std-threads.am build: clean up “make dist” rules. 8年前
lol-pegtl.am 3rdparty: upgrade PEGTL to its latest version (2.1.4 or something). 7年前

README.md

Generate vcxproj for Bullet:

cat lol-bullet.am | \
    awk '/bullet_source/ { print "  <ItemGroup>" } \
         /NULL/ { print "  </ItemGroup>" } \
         /bullet3.*\.(c|cpp)\>/ { print "    <ClCompile Include=\""$1"\" />" } \
         /bullet3.*\.(h|hpp|cl)\>/ { print "    <ClInclude Include=\""$1"\" />" }'