From a7044c9a8b0848fc9d6158b98ac4cef5ed0e5469 Mon Sep 17 00:00:00 2001 From: Christopher Bruns Date: Sun, 25 Sep 2016 15:57:50 -0400 Subject: [PATCH] Remove quotation marks that cause trouble with older versions of CMake. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 485d6ea03..97c44355a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -55,7 +55,7 @@ function( add_pk3 PK3_NAME PK3_DIR ) add_custom_target( ${PK3_TARGET} ALL COMMAND ${CMAKE_COMMAND} -E touch $ DEPENDS ${ZDOOM_OUTPUT_DIR}/${PK3_NAME} - SOURCES "${PK3_SRCS}") + SOURCES ${PK3_SRCS}) endfunction() # Macro for building libraries without debugging information