Software Archive
Read-only legacy content
17061 Discussions

How To Make Installer with Realsense Runtime?

Ariska_Hidayat
Beginner
765 Views
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 Replies
Xusheng_L_Intel
Employee
765 Views

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

0 Kudos
Ariska_Hidayat
Beginner
765 Views
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.
0 Kudos
Ariska_Hidayat
Beginner
765 Views

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.

0 Kudos
Sankalp_S_
Beginner
765 Views

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.

0 Kudos
Ariska_Hidayat
Beginner
765 Views

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.

 

0 Kudos
Reply