2019-04-07 09:51:19 +00:00
|
|
|
# In case both NFORenum and GRFCodec are found, generate the GRF.
|
|
|
|
# Otherwise, just use them from the cache (read: git).
|
|
|
|
# This is mainly because not many people have both of these tools installed,
|
|
|
|
# so it is cheaper to cache them in git, and only regenerate when you are
|
|
|
|
# working on it / have the tools installed.
|
2020-09-25 11:55:25 +00:00
|
|
|
if(GRFCODEC_FOUND)
|
Add: introduce CMake for project management
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.
2019-04-07 09:57:55 +00:00
|
|
|
include(CreateGrfCommand)
|
2019-04-07 09:51:19 +00:00
|
|
|
create_grf_command(
|
|
|
|
# We share some files with 'openttd' grf
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../openttd/airports.png
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../openttd/canals.png
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../openttd/chars.png
|
|
|
|
)
|
2020-09-25 11:55:25 +00:00
|
|
|
endif()
|