Software Archive
Read-only legacy content
17061 Discusiones

How To Make Installer with Realsense Runtime?

Ariska_Hidayat
Principiante
916 Vistas
Hi All,

I am a game developer with realsense. After the game finished, I wanted to create an installer. but when installed on another computer, the game can not be executed because there is no realsense runtime on the computer. My question, how when installing a game realsense by installing the  realsense runtime if not done there? thx
0 kudos
5 Respuestas
Xusheng_L_Intel
Empleados
916 Vistas

You need include the RealSense runtime in your app package. You can find detail info @https://software.intel.com/sites/landingpage/realsense/camera-sdk/v1.1/documentation/html/index.html?deploy_application_deployment.html

Ariska_Hidayat
Principiante
916 Vistas
Does runtime installed just insert the file :

 

$(RSSDK_DIR)/bin/win32:

libpxcclr.unity.dll

libpxccpp2c.dll

libpxccpp2c.dll.signature

 

$(RSSDK_DIR)/bin/x64:

libpxcclr.unity.dll

libpxccpp2c.dll

libpxccpp2c.dll.signature

Or do I have to do something else? thx.
Ariska_Hidayat
Principiante
916 Vistas

I've found the solution of my problem:
https://software.intel.com/en-us/articles/add-realsense-runtime-to-app-installer


Hope it is useful.

Sankalp_S_
Principiante
916 Vistas

Hello Ariska,

Are you using unity for your development ? If yes then can you guide me how to combine exported scripts from realtime installer and my exe file made from unity.

I am using inno installer for combine both package but in documents they are telling to follow the commands of readme_cmd.txt.  What does that means ?

Waiting for your help.

Thanks.

Ariska_Hidayat
Principiante
916 Vistas

Hi Sankalp,

Yes, I'm using Unity for Development n using inno for make installer.

You must  follow the commands of readme_cmd.txt. You must use a string was in readme_cmd.txt as a parameter in Inno Script.

example parameter on inno script:

[Run]

Filename: "{app}\runtime\setup.exe"; Parameters:"setup.exe --silent --no-progress --acceptlicense=yes --fnone=all --finstall=core,vs_rt_2012,hand,personify,vs_rt_2013,face3d,utils,lanternrock"; 

 

Maybe parameters in your application may be different from the parameters in my application. You should check the parameters in the file readme_cmd.txt. I hope this can help you. thx.

 

Responder