Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-11-27 | CREATE_PROJECT: Support building with Tremor instead of Vorbis | Cameron Cawley | |
2018-08-11 | CREATE_PROJECT: Fix creating CMake projects outside of the main source directory | Cameron Cawley | |
2018-04-22 | CREATE_PROJECT: CMAKE: Fix importing SDL2 when it was built using CMake | Bastien Bouclet | |
When SDL is built using CMake, Find_Package imports a target instead of defining variables. If a target was imported we now define the include path and linker flags variables from the target's properties. Using imported targets is a best practice. Ideally, we should define an imported target when we detect variables were defined. However, the linker flags variable would need to be parsed into a library path and a list of libraries, making that approach impractical. | |||
2018-03-20 | CREATE_PROJECT: Place libs requiring symbols before libs providing them | Bastien Bouclet | |
In the CMake generator. So the linker can resolve the symbols it marked as unresolved as it walks the libraries. Fixes building ResidualVM with msys2 from Qt Creator on Windows. | |||
2017-09-30 | BUILD: Define pointer sized integer types and remove SCUMM_64BITS | Bastien Bouclet | |
2017-04-18 | JANITORIAL: Remove superfluous semicolons | Torbjörn Andersson | |
2017-03-10 | CREATE_PROJECT: Support for a different target build directory in CMake | Peter Kohaut | |
2016-09-15 | CREATE_PROJECT: Use SDL_Net2 when building with SDL2 for cmake | Bastien Bouclet | |
2016-09-03 | CREATE_PROJECT: Add CURL and SDL_net to the list of libraries for cmake ↵ | Bastien Bouclet | |
generation | |||
2016-07-24 | CREATE_PROJECT: Fix MSVC compilation | Bastien Bouclet | |
Fixes #7173. | |||
2016-07-24 | CREATE_PROJECT: Hopewfully fix MSVC compilation | Eugene Sandulenko | |
2016-07-07 | DEVTOOLS: Add a CMake project generator to create_project | Bastien Bouclet | |
Also-By: Joel Teichroeb <joel@teichroeb.net> Also-By: Einar Johan Trøan Sømåen <einarjohants@gmail.com> |