parthip Posted September 24 Share Posted September 24 I am using unigine 2.15 and c++ for the script and my system is Ubuntu 22, How do I build the release version of the game for other platforms like windows, linux and mac ? Also how do I compile the c++ for release using cmake? Link to comment
silent Posted September 24 Share Posted September 24 UNIGINE currently supports only Linux and Windows, no macOS build are possible. In order to build Windows version of your game, you have to use Windows and compile your game from sources using MSVC compiler (you can generate Visual Studio solution using CMake or build via command line). To build and link with release engine version you can use default cmake commands: cd /your_game_dir/source cmake . cmake --build . --config Release Please make sure that while you doing this you have Release binaries stored in <YOUR_GAME_DIR>/bin directory. Thanks! How to submit a good bug report --- FTP server for test scenes and user uploads: ftp://files.unigine.com user: upload password: 6xYkd6vLYWjpW6SN Link to comment
Recommended Posts