revamp MSVC build system, separate dynamic and static builds, separate debug and release intermediate directories

This commit is contained in:
Josh Coalson
2002-11-21 09:00:25 +00:00
parent 48404ff9c3
commit bfc8e319c2
76 changed files with 2169 additions and 449 deletions

View File

@@ -19,22 +19,6 @@
#ifndef SHARE__GRABBAG_H
#define SHARE__GRABBAG_H
#if defined(FLAC__NO_DLL) || defined(unix) || defined(__CYGWIN__) || defined(__CYGWIN32__)
#define GRABBAG_API
#else
#ifdef GRABBAG_API_EXPORTS
#define GRABBAG_API _declspec(dllexport)
#else
#define GRABBAG_API _declspec(dllimport)
#define __LIBNAME__ "grabbag.lib"
#pragma comment(lib, __LIBNAME__)
#undef __LIBNAME__
#endif
#endif
/* These can't be included by themselves, only from within grabbag.h */
#include "grabbag/cuesheet.h"
#include "grabbag/file.h"