fix xcode project

This commit is contained in:
2018-09-16 16:07:42 +02:00
parent bbb0006a1f
commit 0ea64accf3
4 changed files with 48 additions and 8 deletions

View File

@@ -1,11 +1,13 @@
#include "version.h"
#include "version.gen.h"
#include "windows.h"
const char* g_version = PP_VERSION_STRING;
const char* g_version_number = PP_VERSION_NUMBER_STRING;
const char* g_window_title = "PanoPainter " PP_VERSION_NUMBER_STRING;
#ifdef _WIN32
#include "windows.h"
const wchar_t* g_version_w = TEXT(PP_VERSION_STRING);
const wchar_t* g_version_number_w = TEXT(PP_VERSION_NUMBER_STRING);
const wchar_t* g_window_title_w = L"PanoPainter " TEXT(PP_VERSION_NUMBER_STRING);
#endif