aboutsummaryrefslogtreecommitdiff
path: root/ports/sdl1
diff options
context:
space:
mode:
Diffstat (limited to 'ports/sdl1')
-rw-r--r--ports/sdl1/CONTROL2
-rw-r--r--ports/sdl1/portfile.cmake8
2 files changed, 8 insertions, 2 deletions
diff --git a/ports/sdl1/CONTROL b/ports/sdl1/CONTROL
index 9d9e856f6..ce37bc05d 100644
--- a/ports/sdl1/CONTROL
+++ b/ports/sdl1/CONTROL
@@ -1,3 +1,3 @@
Source: sdl1
-Version: 1.2.15-4
+Version: 1.2.15-5
Description: Simple DirectMedia Layer is a cross-platform development library designed to provide low level access to audio, keyboard, mouse, joystick, and graphics hardware via OpenGL and Direct3D.
diff --git a/ports/sdl1/portfile.cmake b/ports/sdl1/portfile.cmake
index c3e580fbb..2cbdfc42c 100644
--- a/ports/sdl1/portfile.cmake
+++ b/ports/sdl1/portfile.cmake
@@ -34,7 +34,13 @@ vcpkg_install_msbuild(
ALLOW_ROOT_INCLUDES
)
-file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/doxyfile)
+#Take all the fils into include/SDL to sovle conflict with SDL2 port
+file(GLOB files ${CURRENT_PACKAGES_DIR}/include/*)
+foreach(file ${files})
+ file(COPY ${file} DESTINATION ${CURRENT_PACKAGES_DIR}/include/SDL)
+ file(REMOVE ${file})
+endforeach()
+file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/include/SDL/doxyfile)
if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "release")
file(MAKE_DIRECTORY ${CURRENT_PACKAGES_DIR}/lib/manual-link)