mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-26 23:10:38 +00:00
Fix CMake build
This commit is contained in:
parent
bc121242b3
commit
cb705f5702
@ -610,6 +610,16 @@ endif()
|
||||
|
||||
set(nativeExtra)
|
||||
set(nativeExtraLibs)
|
||||
|
||||
if(ARM)
|
||||
set(nativeExtra ${nativeExtra}
|
||||
native/math/fast/fast_matrix_neon.S)
|
||||
else()
|
||||
set(nativeExtra ${nativeExtra}
|
||||
native/math/fast/fast_matrix_sse.c)
|
||||
endif()
|
||||
|
||||
|
||||
if(ANDROID)
|
||||
set(nativeExtra ${nativeExtra}
|
||||
native/base/NativeApp.h
|
||||
@ -768,6 +778,8 @@ add_library(native STATIC
|
||||
native/input/keycodes.h
|
||||
native/input/input_state.h
|
||||
native/input/input_state.cpp
|
||||
native/math/fast/fast_math.c
|
||||
native/math/fast/fast_matrix.c
|
||||
native/math/curves.cpp
|
||||
native/math/curves.h
|
||||
native/math/expression_parser.cpp
|
||||
|
2
native
2
native
@ -1 +1 @@
|
||||
Subproject commit 9a49f564cecb83bd96c004bda452061e6e34189f
|
||||
Subproject commit 8c33c6aa099aa90fffe72932983701f71fa4f74b
|
Loading…
Reference in New Issue
Block a user