21 lines
457 B
C++
21 lines
457 B
C++
// stdafx.h : include file for standard system include files,
|
|
// or project specific include files that are used frequently, but
|
|
// are changed infrequently
|
|
//
|
|
|
|
#pragma once
|
|
#define wxUSE_UNICODE 1
|
|
#define wxUSE_UNICODE_WCHAR 1
|
|
#include <wx/wxprec.h>
|
|
#include <array>
|
|
#include "app.h"
|
|
|
|
#ifdef _DEBUG
|
|
#pragma comment(lib, "wxbase31ud.lib")
|
|
#else
|
|
#pragma comment(lib, "wxbase31u.lib")
|
|
#endif
|
|
|
|
|
|
// TODO: reference additional headers your program requires here
|