@@ -10,7 +10,7 @@ include_directories(libs/other)
1010#Telemetry receiver is included as an imported libarary, e.g we don't compile it here, but rather use .so and .h files
1111##########################################################################################################
1212#T_CORE_DIR is passed as an argument in app/build.gradle
13- set (T_CORE_DIR ${CMAKE_SOURCE_DIR } /../../Telemetry/TelemetryCore)
13+ # set(T_CORE_DIR ${CMAKE_SOURCE_DIR}/../../Telemetry/TelemetryCore)
1414set (T_SOURCE_DIR ${T_CORE_DIR} /src/main/cpp/Telemetry)
1515set (T_SO_FILES ${T_CORE_DIR} /jniLibs)
1616include_directories (${T_SOURCE_DIR } )
@@ -28,7 +28,7 @@ set_target_properties( # Specifies the target library.
2828#we just include and buld here the files from RenderingXCore directly,except glm and gvr
2929##########################################################################################################
3030#RX_CORE_DIR is passed as an argument in app/build.gradle
31- set (RX_CORE_DIR ${CMAKE_SOURCE_DIR } /../../RenderingX/RenderingXCore)
31+ # set(RX_CORE_DIR ${CMAKE_SOURCE_DIR}/../../RenderingX/RenderingXCore)
3232#first, get all the external libraries that come with RenderingXCore - glm and gvr
3333#glm is header only, we only need to provide the path
3434include_directories (${RX_CORE_DIR} /libs/glm )
@@ -116,11 +116,15 @@ target_link_libraries( GLRMono ${GLR_SOME_DEPENDENCIES} )
116116#target_link_libraries( GLRMono360 ${GLR_SOME_DEPENDENCIES} )
117117
118118add_library ( GLRStereoNormal SHARED
119- src/main/cpp/GLRenderer/GLRStereoNormal.cpp )
119+ src/main/cpp/GLRenderer/GLRStereoNormal.cpp
120+ src/main/cpp/GLRenderer/SceneStereoscopic.cpp
121+ )
120122target_link_libraries ( GLRStereoNormal ${GLR_SOME_DEPENDENCIES} )
121123
122124add_library ( GLRStereoSuperSync SHARED
123- src/main/cpp/GLRenderer/GLRStereoSuperSync.cpp )
125+ src/main/cpp/GLRenderer/GLRStereoSuperSync.cpp
126+ src/main/cpp/GLRenderer/SceneStereoscopic.cpp
127+ )
124128target_link_libraries ( GLRStereoSuperSync ${GLR_SOME_DEPENDENCIES} SuperSync )
125129
126130add_library ( GLRStereoDaydream SHARED
0 commit comments