mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-26 17:36:05 -05:00
Add android.cpp to test members
This commit is contained in:
parent
46e4cdb3b1
commit
175f488c23
2 changed files with 10 additions and 1 deletions
9
loader/test/members/Android.cpp
Normal file
9
loader/test/members/Android.cpp
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
#include "Common.hpp"
|
||||||
|
|
||||||
|
#ifdef GEODE_IS_ANDROID
|
||||||
|
|
||||||
|
// Add known android struct members here
|
||||||
|
|
||||||
|
// needed classes are ones in the ids folder and some generic ones (i think they are already done though so only ids)
|
||||||
|
|
||||||
|
#endif
|
|
@ -4,7 +4,7 @@ set(PROJECT_NAME TestMembers)
|
||||||
|
|
||||||
project(${PROJECT_NAME} VERSION 1.0.0)
|
project(${PROJECT_NAME} VERSION 1.0.0)
|
||||||
|
|
||||||
add_library(${PROJECT_NAME} SHARED MacOS.cpp Windows.cpp)
|
add_library(${PROJECT_NAME} SHARED MacOS.cpp Windows.cpp Android.cpp)
|
||||||
target_compile_features(${PROJECT_NAME} PUBLIC cxx_std_20)
|
target_compile_features(${PROJECT_NAME} PUBLIC cxx_std_20)
|
||||||
|
|
||||||
target_include_directories(${PROJECT_NAME} PRIVATE
|
target_include_directories(${PROJECT_NAME} PRIVATE
|
||||||
|
|
Loading…
Reference in a new issue