Add a .gitignore file (adapted from github.com/steakknife/tripwire fork); fix a Cygwin warning in tchar.h.
This commit is contained in:
parent
9698ca5333
commit
82fbd232c8
|
@ -0,0 +1,24 @@
|
||||||
|
stamp-h1
|
||||||
|
config.h
|
||||||
|
config.h.in~
|
||||||
|
config.log
|
||||||
|
config.status
|
||||||
|
compile
|
||||||
|
autom4te.cache/
|
||||||
|
bin/
|
||||||
|
lib/
|
||||||
|
**/Makefile
|
||||||
|
**/*.o
|
||||||
|
**/*.dylib
|
||||||
|
**/*.a
|
||||||
|
**/*.so
|
||||||
|
**/*.dll
|
||||||
|
**/siggen
|
||||||
|
**/tripwire
|
||||||
|
**/twadmin
|
||||||
|
**/twprint
|
||||||
|
**/siggen.exe
|
||||||
|
**/tripwire.exe
|
||||||
|
**/twadmin.exe
|
||||||
|
**/twprint.exe
|
||||||
|
releases/
|
|
@ -125,8 +125,9 @@ typedef std::ifstream TIFSTREAM;
|
||||||
#define _T(x) x
|
#define _T(x) x
|
||||||
|
|
||||||
// misc...
|
// misc...
|
||||||
|
#ifndef __cdecl
|
||||||
#define __cdecl
|
#define __cdecl
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif // WIN32
|
#endif // WIN32
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue