Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed issues with CMakeLists.txt for the psvita version #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion psvita/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,12 @@ add_executable(${VITA_APP_NAME}
)

target_link_libraries(${VITA_APP_NAME}
soloud
SceLibKernel_stub
SceDisplay_stub
SceTouch_stub
SceAudio_stub
SceAppMgr_stub
-lvita2d
-lSceDisplay_stub
-lSceGxm_stub
Expand All @@ -49,13 +51,14 @@ target_link_libraries(${VITA_APP_NAME}
-lScePgf_stub
-lScePvf_stub
-lSceCommonDialog_stub
-lSceAppMgr_stub
-lfreetype
-lpng
-ljpeg
-lz
-lm
-lc
soloud
-lbz2
pthread
m
)
Expand All @@ -71,5 +74,6 @@ vita_create_vpk(${SHORT_NAME}.vpk ${VITA_TITLEID} ${SHORT_NAME}.self
FILE sce_sys/livearea/contents/bg0.png sce_sys/livearea/contents/bg0.png
FILE sce_sys/livearea/contents/startup.png sce_sys/livearea/contents/startup.png
FILE sce_sys/livearea/contents/template.xml sce_sys/livearea/contents/template.xml
FILE src/resources resources
)