mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 13:39:08 +08:00
272269583c
Co-authored-by: Phoebe <20694052+PhoebeHui@users.noreply.github.com>
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
|
index 7dfd35389..7944f401b 100644
|
|
--- a/CMakeLists.txt
|
|
+++ b/CMakeLists.txt
|
|
@@ -1916,9 +1916,10 @@ listtostr(EXTRA_CFLAGS _EXTRA_CFLAGS)
|
|
set(EXTRA_CFLAGS ${_EXTRA_CFLAGS})
|
|
|
|
# Compat helpers for the configuration files
|
|
-if(NOT WINDOWS OR CYGWIN)
|
|
# TODO: we need a Windows script, too
|
|
+ if(NOT WINDOWS OR CYGWIN)
|
|
execute_process(COMMAND sh ${SDL2_SOURCE_DIR}/build-scripts/updaterev.sh)
|
|
+ endif()
|
|
|
|
set(prefix ${CMAKE_INSTALL_PREFIX})
|
|
set(exec_prefix "\${prefix}")
|
|
@@ -1960,7 +1961,6 @@ if(NOT WINDOWS OR CYGWIN)
|
|
"${SDL2_BINARY_DIR}/sdl2-config" @ONLY)
|
|
configure_file("${SDL2_SOURCE_DIR}/SDL2.spec.in"
|
|
"${SDL2_BINARY_DIR}/SDL2.spec" @ONLY)
|
|
-endif()
|
|
|
|
##### Info output #####
|
|
message(STATUS "")
|
|
@@ -2198,6 +2198,7 @@ if(NOT (WINDOWS OR CYGWIN))
|
|
# TODO: what about the .spec file? Is it only needed for RPM creation?
|
|
install(FILES "${SDL2_SOURCE_DIR}/sdl2.m4" DESTINATION "${CMAKE_INSTALL_FULL_DATAROOTDIR}/aclocal")
|
|
endif()
|
|
+install(FILES ${SDL2_BINARY_DIR}/sdl2.pc DESTINATION "lib${LIB_SUFFIX}/pkgconfig")
|
|
|
|
##### Uninstall target #####
|
|
|
|
|