-
Notifications
You must be signed in to change notification settings - Fork 5
/
CMakeLists.txt
49 lines (41 loc) · 1.1 KB
/
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
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()
set(CMAKE_C_COMPILER_FORCED True)
set(CMAKE_CXX_COMPILER_FORCED True)
project(vdbtcp C CXX)
include("${VITASDK}/share/vita.cmake" REQUIRED)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -fno-strict-aliasing")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11 -Wl,-q -Wall -O3 -nostdlib -fno-rtti -fno-exceptions")
add_executable(vdbtcp
main.cpp
commandconnection.cpp
gdbconnection.cpp
ftpconnection.cpp
network.cpp
thread.cpp
eventflag.cpp
abi.cpp
ftp.c
strlcat.c
log.h
)
target_link_libraries(vdbtcp
c
gcc
vdb_user_stub
SceIofilemgr_stub
SceKernelThreadMgr_stub
SceLibKernel_stub
SceNetCtl_stub_weak
SceNet_stub_weak
SceAppMgr_stub_weak
ScePower_stub_weak
)
add_custom_target(exports SOURCES exports.yml)
vita_create_self(vdbtcp.suprx vdbtcp CONFIG exports.yml UNSAFE)