blob: c2d0d9d1bca4bdd30d4e80d184393d5ebf8a635d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# PSn00bSDK example CMake script
# (C) 2021 spicyjpeg - MPL licensed
cmake_minimum_required(VERSION 3.21)
# CMAKE_TOOLCHAIN_FILE must be set to point to cmake/sdk.cmake in the PSn00bSDK
# installation directory *before* calling project(). You don't have to hardcode
# the path in your CMakeLists.txt as you can set it from the command line when
# configuring (-DCMAKE_TOOLCHAIN_FILE=...) or using CMake presets.
if(NOT DEFINED CMAKE_TOOLCHAIN_FILE AND DEFINED ENV{PSN00BSDK_LIBS})
set(CMAKE_TOOLCHAIN_FILE $ENV{PSN00BSDK_LIBS}/cmake/sdk.cmake)
endif()
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 STATIC 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
)
|