Files
@ r28396:ef195b601c72
Branch filter:
Location: cpp/openttd-patchpack/source/src/settingsgen/CMakeLists.txt - annotation
r28396:ef195b601c72
497 B
text/plain
Fix: Pass townnameparts as parameter when testing townname based companyname. (#11685)
Length of returned string could vary and pass/fail the length check with a different
string than the final selection.
Length of returned string could vary and pass/fail the length check with a different
string than the final selection.
r24733:1771b85df64c r24244:556df3f1e087 r24402:18218e3ed070 r24402:18218e3ed070 r24244:556df3f1e087 r24402:18218e3ed070 r24402:18218e3ed070 r24402:18218e3ed070 r24402:18218e3ed070 r27160:192bc991c2e6 r24402:18218e3ed070 r24402:18218e3ed070 r24402:18218e3ed070 r24402:18218e3ed070 r24402:18218e3ed070 r24402:18218e3ed070 r24402:18218e3ed070 r24402:18218e3ed070 r24402:18218e3ed070 | cmake_minimum_required(VERSION 3.9)
if (NOT HOST_BINARY_DIR)
project(settingsgen)
set(sourcefiles
settingsgen.cpp
../core/alloc_func.cpp
../misc/getoptdata.cpp
../error.cpp
../ini_load.cpp
../string.cpp
)
add_definitions(-DSETTINGSGEN)
add_executable(settingsgen ${sourcefiles})
export(TARGETS settingsgen FILE ${CMAKE_BINARY_DIR}/settingsgen.cmake)
add_dependencies(tools settingsgen)
endif()
|