Commit f0440561 authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander Trofimov
parent eceba0ed
......@@ -16,6 +16,12 @@
#include "nativecontrol.h"
#include <list>
#ifdef LINUX
#include <unistd.h>
#include <sys/wait.h>
#include <stdio.h>
#endif
template <typename T>
class CScopeWrapper
{
......
......@@ -14,6 +14,7 @@ CONFIG -= app_bundle
TEMPLATE = app
CONFIG -= debug_and_release debug_and_release_target
CONFIG += c++11
############### destination path ###############
DESTINATION_SDK_PATH = $$PWD/../../../SDK/lib
......@@ -23,6 +24,22 @@ win32 {
DEFINES += WIN32
}
linux-g++ | linux-g++-64 | linux-g++-32 {
DEFINES += \
LINUX \
_LINUX \
_LINUX_QT
}
mac {
DEFINES += \
LINUX \
_LINUX \
_LINUX_QT \
_MAC \
MAC
}
# WINDOWS
win32:contains(QMAKE_TARGET.arch, x86_64):{
CONFIG(debug, debug|release) {
......
#include "../docbuilder.h"
#ifdef LINUX
#include "../../common/File.h"
#endif
#define OFFICESTUDIO_FILE_DOCUMENT 0x0040
#define OFFICESTUDIO_FILE_DOCUMENT_DOCX OFFICESTUDIO_FILE_DOCUMENT + 0x0001
#define OFFICESTUDIO_FILE_DOCUMENT_DOC OFFICESTUDIO_FILE_DOCUMENT + 0x0002
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment