This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/CMakeLists.txt b/CMakeLists.txt | |
| index b7d280190..c5e12d93d 100644 | |
| --- a/CMakeLists.txt | |
| +++ b/CMakeLists.txt | |
| @@ -3,7 +3,11 @@ cmake_minimum_required(VERSION 3.5) | |
| # Version change is fine. | |
| project(SRB2 | |
| VERSION 1.6 | |
| - LANGUAGES C) | |
| + LANGUAGES C CXX) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/Code/CMakeLists.txt b/Code/CMakeLists.txt | |
| index a0764a7..2c8ec32 100644 | |
| --- a/Code/CMakeLists.txt | |
| +++ b/Code/CMakeLists.txt | |
| @@ -90,14 +90,16 @@ include_directories( | |
| ) | |
| target_link_libraries(${PROJECT_NAME} PRIVATE | |
| - ${SDL2_LIBRARIES} | |
| + SDL2::SDL2main |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| set -e | |
| # Shellscript written in POSIX sh by Bijman. Put this script to extracted CL_ShadowPlus Patcher folder and run it from there. | |
| # Check for required commands in relative paths | |
| check_command() { | |
| if [ -z "$(command -v "$1")" ]; then | |
| echo "Error: Required command '$1' not found or not executable." >&2 | |
| exit 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Copyright 2018, 2019, 2020 Azure Zanculmarktum | |
| # Copyright 2025 Bijman | |
| # All rights reserved. | |
| # | |
| # Redistribution and use of this script, with or without modification, is | |
| # permitted provided that the following conditions are met: | |
| # | |
| # 1. Redistributions of this script must retain the above copyright |