mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-21 14:29:55 +00:00
Fix cleanup script and update Conan + CMakeLists to fix errors
This commit is contained in:
parent
755f7c3b15
commit
9aacb5f136
3 changed files with 4 additions and 2 deletions
|
|
@ -294,7 +294,7 @@ target_link_libraries(${PROJECT_NAME}
|
|||
${PLATFORM_LIBRARIES})
|
||||
|
||||
IF(APPLE)
|
||||
add_custom_command(TARGET ${target} POST_BUILD COMMAND cmake -P "${CMAKE_SOURCE_DIR}/patches/mac/CompleteBundle.cmake" VERBATIM)
|
||||
add_custom_command(TARGET ${PROJECT_NAME} POST_BUILD COMMAND cmake -P "${CMAKE_SOURCE_DIR}/patches/mac/CompleteBundle.cmake" VERBATIM)
|
||||
ENDIF()
|
||||
|
||||
if(STEAM)
|
||||
|
|
|
|||
|
|
@ -2,6 +2,8 @@
|
|||
|
||||
rm -rf journal/mac/__pycache__
|
||||
rm -rf steamshim_parent/build
|
||||
rm -rf steamshim_parent/CMakeFiles
|
||||
rm -rf steamshim_parent/CMakeCache.txt
|
||||
rm -rf build
|
||||
rm -rf bin
|
||||
rm -rf lib
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ class MkxpConan(ConanFile):
|
|||
license = "GPLv2"
|
||||
url = "https://github.com/elizagamedev/mkxp-oneshot"
|
||||
description = "OneShot game runtime"
|
||||
settings = "os", "compiler", "build_type", "arch"
|
||||
settings = "os", "compiler", "build_type", "arch", "cppstd"
|
||||
generators = "cmake"
|
||||
exports_sources = "*"
|
||||
requires = (
|
||||
|
|
|
|||
Loading…
Reference in a new issue