mirror of
https://github.com/OpenTTD/OpenTTD
synced 2025-12-10 06:52:05 +01:00
CMake works on all our supported platforms, like MSVC, Mingw, GCC, Clang, and many more. It allows for a single way of doing things, so no longer we need shell scripts and vbs scripts to work on all our supported platforms. Additionally, CMake allows to generate project files for like MSVC, KDevelop, etc. This heavily reduces the lines of code we need to support multiple platforms from a project perspective. Addtiionally, this heavily improves our detection of libraries, etc.
36 lines
531 B
CMake
36 lines
531 B
CMake
add_subdirectory(cocoa)
|
|
|
|
if (NOT OPTION_DEDICATED)
|
|
add_files(
|
|
allegro_v.cpp
|
|
allegro_v.h
|
|
CONDITION Allegro_FOUND
|
|
)
|
|
|
|
add_files(
|
|
sdl_v.cpp
|
|
sdl_v.h
|
|
CONDITION SDL_FOUND
|
|
)
|
|
|
|
add_files(
|
|
sdl2_v.cpp
|
|
sdl2_v.h
|
|
CONDITION SDL2_FOUND
|
|
)
|
|
|
|
add_files(
|
|
win32_v.cpp
|
|
win32_v.h
|
|
CONDITION WIN32
|
|
)
|
|
endif (NOT OPTION_DEDICATED)
|
|
|
|
add_files(
|
|
dedicated_v.cpp
|
|
dedicated_v.h
|
|
null_v.cpp
|
|
null_v.h
|
|
video_driver.hpp
|
|
)
|