summary refs log tree commit diff stats
path: root/plugins/checksum/checksum.vcxproj
AgeCommit message (Collapse)Author
2012-10-30Remove hexchat-plugin.h duplicateBerke Viktor
2012-10-21Move warning level to property sheetBerke Viktor
2012-10-03Revert to VS2010 part4Berke Viktor
2012-10-02Oops, wrong find'n'replaceBerke Viktor
2012-10-02Remove hardcoding as much as possibleBerke Viktor
2012-10-02Change platform toolset to Visual Studio 2012Berke Viktor
2012-07-21Add _AMD64_ definition for x64 builds, make Visual Studio even happierBerke Viktor
2012-07-21Add trailing backslashes to Output and Intermediate directories, make Visual ↵Berke Viktor
Studio happy
2012-07-18Fix Checksum compilation on WindowsBerke Viktor
2012-07-13Rename DLL files, rename X-SASL to SASLBerke Viktor
2012-07-11Rebranding on the file levelBerke Viktor
2012-06-15Add x64 support to the VS solutionBerke Viktor
2012-06-15LOTS of fixes to the VS solutionBerke Viktor
2012-06-10Add all plugins to solution except WMPABerke Viktor
gic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
include "..\makeinc.mak"

TARGET = gtk2-prefs.exe

PREF_OBJECTS = \
callbacks.obj \
interface.obj \
support.obj \
win32util.obj \
main.obj

CPPFLAGS = $(CPPFLAGS) /D_STL70_ /D_STATIC_CPPLIB /EHsc /DHAVE_CONFIG_H

all: $(PREF_OBJECTS) $(TARGET)

.cpp.obj:
	$(CC) $(CPPFLAGS) $(GLIB) $(GTK) /I. /c $<
	
$(TARGET): $(PREF_OBJECTS)
	$(LINK) /out:$(TARGET) /entry:mainCRTStartup $(LDFLAGS) $(PREF_OBJECTS) ntstc_msvcrt.lib $(LIBS)

clean:
	del $(TARGET)
	del *.obj