Thanks to visit codestin.com
Credit goes to github.com

Skip to content
goszpeti edited this page Nov 10, 2021 · 2 revisions

Welcome to the conan_app_launcher wiki!

JSON Ui Config File layout

It is not needed to edit this by hand anymore, since (almost) every option is available in the GUI. The config file uses the following exemplary schema:

{
    "version": "0.4.0",
    "tabs": [
        {
            "name": "Basics",
            "apps": [
                {
                    "name": "App1 with spaces", 
                    "conan_ref": "app1/0.1.0@user1/stable", // full conan reference
                    "package_id": "app1/0.1.0@user1/stable" // DEPRECATED - will converted to conan_ref automatically
                    "executable": "bin/app1", // relative to conan "package folder" - can also be a file to open
                    "icon": "MyIcon.png" // relative to this config file,
                    "is_console_application": true, // start console application in extra window
                    "args": "--version" // args to start the application with
                },
                {
                    "name": "App2",
                    "conan_ref": "app2/0.2.0@user2/testing",
                    "executable": "bin/app2", // forward slashes are preferred
                    "icon": "C:\\CustomIcon.ico" // but escaped backslashes also work
                }
            ]
        },
        {
            "name": "Extra",
            "apps": [
                {
                    "name": "App3",
                    "conan_ref": "app3/0.3.0@user3/stable",
                    "is_console_application": true, // starts in a new console window
                    "executable": "bin/app3", // extension (.exe) can be ommited for windows
                    // Icon can be ommitted, then it will try on Windows to use the applications own icon
                }
            ]
        }
    ]
}

Clone this wiki locally