Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Sam Hocevar f6c386f560 Allow to build without Bullet Physics. il y a 7 ans
..
bullet3 @ 764822241e Update bullet3 to a more recent Git head. il y a 8 ans
imgui @ 6742ac4587 imgui: update submodule to a cleaner branch. il y a 9 ans
lua @ 167fe0b5ef build: improvements when building as a subproject il y a 9 ans
mingw-std-threads @ 10665829da Update pegtl and mingw-std-threads submodules. il y a 8 ans
pegtl @ 4c1c88bb0b Update pegtl and mingw-std-threads submodules. il y a 8 ans
Makefile.am Allow to build without Bullet Physics. il y a 7 ans
README.md Fix build with Visual Studio 2017. il y a 8 ans
lol-bullet.am Update bullet3 to a more recent Git head. il y a 8 ans
lol-bullet.vcxproj Fix build with Visual Studio 2017. il y a 8 ans
lol-bullet.vcxproj.filters build: move Bullet to a submodule il y a 9 ans
lol-imgui.am build: add several missing distributed files for Windows versions. il y a 9 ans
lol-lua.am build: minor file renaming il y a 9 ans
lol-lua.vcxproj Migrate to Visual Studio 2017. il y a 8 ans
lol-lua.vcxproj.filters build: move Lua to a submodule il y a 9 ans
lol-mingw-std-threads.am build: clean up “make dist” rules. il y a 9 ans
lol-pegtl.am 3rdparty: upgrade PEGTL to its latest version (2.1.4 or something). il y a 9 ans

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"\" />" }'