project update

This commit is contained in:
Sepehr Taghdisian 2014-08-11 20:43:24 +04:30
parent 56bb993d63
commit e3001fb986
2 changed files with 26 additions and 0 deletions

View file

@ -161,6 +161,12 @@
#include <stdio.h> // vsnprintf
#include <string.h> // memset
#ifdef __GNUC__
#include <limits.h>
#include <stdint.h>
#endif
#ifdef _MSC_VER
#pragma warning (disable: 4996) // 'This function or variable may be unsafe': strcpy, strdup, sprintf, vsnprintf, sscanf, fopen
#endif

20
libimgui.pro Normal file
View file

@ -0,0 +1,20 @@
TEMPLATE = lib
CONFIG += static
CONFIG -= app_bundle
CONFIG -= qt
CONFIG -= warn_on
CONFIG(release, debug|release) {
TARGET = imgui
}
CONFIG(debug, debug|release) {
TARGET = imgui-dbg
}
SOURCES += \
imgui.cpp
HEADERS += \
imgui.h \
imconfig.h