From 2229c2c6c0feb5b56f010fa9f966ef01b4a97c7f Mon Sep 17 00:00:00 2001 From: Misa Date: Fri, 16 Apr 2021 19:15:50 -0700 Subject: [PATCH] Remove usage of undefined variable PFSP_SRC This variable is not defined anywhere and never has been since the source code release (which is when this CMake file was first created). To make things clearer, I'm cleaning this variable up. --- desktop_version/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop_version/CMakeLists.txt b/desktop_version/CMakeLists.txt index a6211059..5fcb28b8 100644 --- a/desktop_version/CMakeLists.txt +++ b/desktop_version/CMakeLists.txt @@ -261,7 +261,7 @@ target_compile_definitions(lodepng-static PRIVATE if(BUNDLE_DEPENDENCIES) add_library(tinyxml2-static STATIC ${XML2_SRC}) - add_library(physfs-static STATIC ${PFS_SRC} ${PFSP_SRC}) + add_library(physfs-static STATIC ${PFS_SRC}) target_compile_definitions(physfs-static PRIVATE -DPHYSFS_SUPPORTS_DEFAULT=0 -DPHYSFS_SUPPORTS_ZIP=1 )