Converted project to C++.

This commit is contained in:
2018-08-06 21:37:16 +03:00
parent 144c3e3e25
commit d85c366212
104 changed files with 6224 additions and 239448 deletions

View File

14
properties/config.h Normal file
View File

@ -0,0 +1,14 @@
#ifndef CONFIG_H
#define CONFIG_H
#define EMBER_PROJECT_EXTENSION ".emproj"
#define EMBER_COMPOSITION_EXTENSION ".emcomp"
#define EMBER_SEQUENCE_EXTENSION ".emseq"
#define APP_NAME "Ember"
#define APP_VERSION "1.0"
#define APP_AUTHOR "Tiberiu Chibici"
#define RECENT_PROJECTS_FILENAME "recentprojects.xml"
#endif // CONFIG_H

View File

@ -1,14 +0,0 @@
APP_NAME = "Ember"
APP_VERSION = "1.0"
APP_AUTHOR = "Tiberiu Chibici"
APP_AUTHOR_SHORT = "TibiCh"
PROJECT_EXTENSION = "emproj"
SEQUENCE_EXTENSION = "emseq"
COMPOSITION_EXTENSION = "emcomp"
DEBUG = 1
DEBUG_SUPPORTED_IMAGE = [ "png", "jpg", "tiff", "jpeg" ]
DEBUG_SUPPORTED_VIDEO = [ "mp4", "avi", "wmv", "mkv" ]
DEBUG_SUPPORTED_AUDIO = [ "mp3", "wav", "ogg", "aiff", "flac" ]
DEBUG_SUPPORTED_SUB = [ "srt" ]