-
Notifications
You must be signed in to change notification settings - Fork 11
/
CMakeLists.txt
50 lines (40 loc) · 1007 Bytes
/
CMakeLists.txt
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
cmake_minimum_required(VERSION 2.8)
if(NOT DEFINED CMAKE_TOOLCHAIN_FILE)
if(DEFINED ENV{VITASDK})
set(CMAKE_TOOLCHAIN_FILE "$ENV{VITASDK}/share/vita.toolchain.cmake" CACHE PATH "toolchain file")
else()
message(FATAL_ERROR "Please define VITASDK to point to your SDK path!")
endif()
endif()
project(ShellBat)
include("${VITASDK}/share/vita.cmake" REQUIRED)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wl,-q -Wall -O3 -std=gnu99")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -fno-rtti -fno-exceptions")
include_directories(
)
link_directories(
${CMAKE_CURRENT_BINARY_DIR}
)
if (NOT ${RELEASE})
add_definitions(-DENABLE_LOGGING)
endif()
add_executable(shellbat
main.c
log.c
)
target_link_libraries(shellbat
taihen_stub
SceLibKernel_stub
SceIofilemgr_stub
k
gcc
ScePower_stub
SceKernelModulemgr_stub
)
set_target_properties(shellbat
PROPERTIES LINK_FLAGS "-nostdlib"
)
vita_create_self(shellbat.suprx shellbat
UNSAFE
CONFIG ${CMAKE_SOURCE_DIR}/shellbat.yml
)