Files @ r28126:9f842b8811bc
Branch filter:

Location: cpp/openttd-patchpack/source/src/pathfinder/CMakeLists.txt

Jonathan G Rennison
Codechange: Replace AllocatedStringParameters with ArrayStringParameters (#11452)

All uses of AllocatedStringParameters are with a compile-time fixed
constant.
Use of a dynamically allocated buffer on the heap is unnecessary and
increases overhead, particularly due to frequent use as a temporary.
1
2
3
4
5
6
7
8
add_subdirectory(npf)
add_subdirectory(yapf)

add_files(
    follow_track.hpp
    pathfinder_func.h
    pathfinder_type.h
)