comunicwatcher/config.h

30 lines
401 B
C
Raw Normal View History

2020-06-12 16:20:53 +00:00
/**
* 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