Full rewrite of all CMakeLists

CMake now works on all platforms
This commit is contained in:
BtbN
2014-01-20 16:58:58 +01:00
parent 8fa309c96e
commit 45ec80fb7d
48 changed files with 2069 additions and 43 deletions

View File

@@ -36,9 +36,9 @@
#define inline __inline
#endif
#define EXPORT extern __declspec(dllexport)
#define EXPORT __declspec(dllexport)
#else
#define EXPORT extern
#define EXPORT
#endif
#if _MSC_VER && _MSC_VER < 0x0708
@@ -67,3 +67,11 @@ typedef int64_t off64_t;
#define SIZE_T_FORMAT "%zu"
#endif /* _MSC_VER */
#ifndef OBS_DATA_PATH
#define OBS_DATA_PATH "data"
#endif
#ifndef OBS_INSTALL_PREFIX
#define OBS_INSTALL_PREFIX ""
#endif