commit | 2dd806061a919add8e4dc44dbe04085433c88c4a | [log] [tgz] |
---|---|---|
author | Sam Lantinga <slouken@libsdl.org> | Mon Nov 20 00:03:23 2017 -0800 |
committer | Sam Lantinga <slouken@libsdl.org> | Mon Nov 20 00:03:23 2017 -0800 |
tree | 97633e67a4150735712d2f62e2a93cfcb70fdbde | |
parent | e877c092e2ca458e3bbea803451650606daf7dba [diff] |
Fixed bug 3959 - cmake build broken by commit 11702 (cf166abbde4a) due to typo Mate Nagy There is a typo in CMakeLists.txt that makes CMake exit with failure. Change that causes the problem: (Notice the double ending brackets) ${SDL2_SOURCE_DIR}/src/video/*.c) + ${SDL2_SOURCE_DIR}/src/video/yuv2rgb/*.c) Fix: Just remove the first ending bracket resulting in: ${SDL2_SOURCE_DIR}/src/video/*.c ${SDL2_SOURCE_DIR}/src/video/yuv2rgb/*.c)