-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
697170b
commit d1ab5dd
Showing
6 changed files
with
2,279 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
cmake_minimum_required(VERSION 3.21) | ||
|
||
project( | ||
ClassiCube | ||
LANGUAGES C ASM | ||
VERSION 1.0.0 | ||
DESCRIPTION "ClassiCube PS1 port" | ||
HOMEPAGE_URL "https://classicube.net" | ||
) | ||
|
||
add_definitions(-DPLAT_PS1) | ||
file(GLOB _sources ../../src/*.c) | ||
|
||
psn00bsdk_add_executable(template GPREL ${_sources}) | ||
|
||
psn00bsdk_add_cd_image( | ||
iso # Target name | ||
template # Output file name (= template.bin + template.cue) | ||
iso.xml # Path to config file | ||
DEPENDS template system.cnf | ||
) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"version": 3, | ||
"cmakeMinimumRequired": { | ||
"major": 3, | ||
"minor": 21, | ||
"patch": 0 | ||
}, | ||
"configurePresets": [ | ||
{ | ||
"name": "default", | ||
"displayName": "Default configuration", | ||
"description": "Use this preset to build the project using PSn00bSDK.", | ||
"generator": "Ninja", | ||
"toolchainFile": "$env{PSN00BSDK_LIBS}/cmake/sdk.cmake", | ||
"binaryDir": "${sourceDir}/build", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug", | ||
"PSN00BSDK_TC": "", | ||
"PSN00BSDK_TARGET": "mipsel-none-elf" | ||
}, | ||
"warnings": { | ||
"dev": false | ||
} | ||
} | ||
] | ||
} |
Binary file not shown.
Oops, something went wrong.