blob: e665c7e23df038e399616523a754712007d20954 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# PSn00bSDK example CMake script
# (C) 2021 spicyjpeg - MPL licensed
cmake_minimum_required(VERSION 3.21)
project(
PSn00bSDK-template
LANGUAGES C CXX ASM
VERSION 1.0.0
DESCRIPTION "PSn00bSDK template"
HOMEPAGE_URL "http://lameguy64.net/?page=psn00bsdk"
)
psn00bsdk_add_executable(template GPREL main.c)
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
)
|