aboutsummaryrefslogtreecommitdiff
path: root/cmake/win9x.cmake
Commit message (Collapse)AuthorAgeFilesLines
* Implement net componentXavier Del Campo Romero2022-09-201-0/+1
|
* Use find_package for SDL librariesXavier Del Campo Romero2022-07-231-26/+1
| | | | | | | | | | CMake already distributes FindSDL*.cmake files for SDL and SDL_mixer, which support custom prefixes via environment variables, removing the need for ad-hoc logic in Win9x builds. Also, according to FindSDL.cmake, #include <SDL.h> is the preferred way for portability reasons, instead of #include <SDL/SDL.h>, which is the option that has been used so far.
* Create cdroot directory on common CMakeLists.txtXavier Del Campo Romero2022-07-231-1/+0
|
* Import SDL_gfxXavier Del Campo Romero2022-07-151-0/+8
|
* host.cmake, win9x.cmake: fetch libfixmath if missingXavier Del Campo Romero2022-06-301-0/+1
|
* win9x.cmake: remove unneeded dependenciesXavier Del Campo Romero2022-06-081-5/+1
|
* win9x.cmake: use target commands for SDL and SDL_mixerXavier Del Campo Romero2022-06-081-8/+12
| | | | | | | | | | | | Since libSDL.a and libSDL_mixer.a are compiled separately from this project, some hacks had been used to get the build running. However, this approach did not make proper use of target-level properties, which are encouraged according to modern CMake standards over global-level commands such as include_directories() or link_libraries(). OTOH, Win32 dependencies were being imported using link_libraries(), but they in fact are SDL dependencies, so target_link_libraries() can be used instead.
* Split CMakeLists.txt into platform-specific *.cmakeXavier Del Campo Romero2022-05-241-0/+37