diff options
author | Sadie Powell <sadie@witchery.services> | 2021-04-27 18:29:45 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-04-27 19:20:36 +0100 |
commit | c21f6eb5a3e27bf9a661e3fd97f49c85f00f6615 (patch) | |
tree | 8f5c6cd9e5a6786c2b2cc33d3a008c091e32926d /src/tools | |
parent | e2aeab970bcbd94ea3531b345d2ec4df111f0d60 (diff) |
Rip out compatibility code for now-unsupported CMake versions.
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/CMakeLists.txt b/src/tools/CMakeLists.txt index b1c5916ca..2e22b575a 100644 --- a/src/tools/CMakeLists.txt +++ b/src/tools/CMakeLists.txt @@ -1,6 +1,6 @@ # Find all the *.cpp files within the current source directory, and sort the list file(GLOB TOOLS_SRCS RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "*.cpp") -sort_list(TOOLS_SRCS) +list(SORT TOOLS_SRCS) # Set all the files to use C++ as well as set their compile flags set_source_files_properties(${TOOLS_SRCS} PROPERTIES LANGUAGE CXX COMPILE_FLAGS "${CXXFLAGS}") |