From 0ad43a9586345c832a19d3df1c6fcb9ee3a36e9b Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Wed, 23 Feb 2011 23:26:58 -0800 Subject: [PATCH] Jamfiles are history. CMake is the future and the present. --- src/eressea.vcxproj | 2 +- src/eressea.vcxproj.filters | 6 +++--- src/spells/Jamfile | 23 ----------------------- 3 files changed, 4 insertions(+), 27 deletions(-) delete mode 100644 src/spells/Jamfile diff --git a/src/eressea.vcxproj b/src/eressea.vcxproj index 6bc2b8490..9b2e3a9c0 100644 --- a/src/eressea.vcxproj +++ b/src/eressea.vcxproj @@ -181,7 +181,7 @@ - + diff --git a/src/eressea.vcxproj.filters b/src/eressea.vcxproj.filters index 4af32df31..4280bbf4a 100644 --- a/src/eressea.vcxproj.filters +++ b/src/eressea.vcxproj.filters @@ -116,12 +116,12 @@ Header Files - - - Source Files + + + \ No newline at end of file diff --git a/src/spells/Jamfile b/src/spells/Jamfile deleted file mode 100644 index a0aaaf7d4..000000000 --- a/src/spells/Jamfile +++ /dev/null @@ -1,23 +0,0 @@ -SubDir TOP src spells ; - -TargetDirectory ; -SubDirHdrs $(SUBDIR)/../gamecode ; -SubDirHdrs $(SUBDIR)/../kernel ; -SubDirHdrs $(SUBDIR)/../util ; -SubDirHdrs $(SUBDIR)/.. ; -SubDirHdrs $(SUBDIR)/../.. ; -SubDirHdrs $(XMLHDRS) ; - -SOURCES = - alp.c - buildingcurse.c - combatspells.c - regioncurse.c - shipcurse.c - spells.c - unitcurse.c - ; - -if $(BUILDTYPE) = REGULAR { -Library spells : $(SOURCES) ; -}