Separated public and private config.h

This commit is contained in:
Tsuda Kageyu
2013-05-03 11:44:36 +09:00
parent 8f8ef3788f
commit 23bd3784a1
10 changed files with 154 additions and 106 deletions

View File

@ -1,4 +1,4 @@
#include "taglib_config.h"
#include "config.h"
#ifdef _WIN32
#include <windows.h>
@ -17,7 +17,7 @@ using namespace std;
inline string testFilePath(const string &filename)
{
return string(TAGLIB_TESTS_DIR "data/") + filename;
return string(TESTS_DIR "data/") + filename;
}
#define TEST_FILE_PATH_C(f) testFilePath(f).c_str()