made building from source on OS X a hell of a lot easier - no more .dylibs, and all the header files are contained in the frameworks (as they should be!)

This commit is contained in:
bill@localhost
2009-11-01 22:09:23 -06:00
parent b3bd3427a5
commit 6853f8374e
9 changed files with 400 additions and 384 deletions
+4
View File
@@ -25,7 +25,11 @@
#include <filesystem/File.h>
// PhysFS
#ifdef LOVE_MACOSX // wacky Mac behavior means different #include syntax!
#include <physfs/physfs.h>
#else
#include <physfs.h>
#endif
// STD
#include <string>
+1 -1
View File
@@ -21,7 +21,7 @@
#include "Filesystem.h"
// Physfs
#include <physfs.h>
//#include <physfs.h> // this gets included by virtue of Filesystem.h including File.h
namespace love
{