aboutsummaryrefslogtreecommitdiff
path: root/cmake
Commit message (Collapse)AuthorAgeFilesLines
* cmake/ps1.cmake: use add_library for libpsx.aXavier Del Campo Romero2022-06-191-5/+7
|
* 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.
* CMakeLists.txt: move target-specific logic awayXavier Del Campo Romero2022-06-073-0/+7
|
* Split CMakeLists.txt into platform-specific *.cmakeXavier Del Campo Romero2022-05-243-0/+77