/** * Configuration * * @author Pierre Hubert */ #pragma once /** * Release configuration */ #ifdef QT_NO_DEBUG // TODO : complete #endif /** * Debug configuration */ #ifndef QT_NO_DEBUG #define API_SERVER_SCHEME "https" #define API_HOST "devweb.local" #define API_BASE_PATH "/comunic/api-v2/" #define API_SERVICE_NAME "ComunicWatcher" #define API_SERVICE_TOKEN "ComunicWatcher" #endif