summaryrefslogtreecommitdiff
path: root/src/Entrypoints.cpp
diff options
context:
space:
mode:
authorJason Maskell <[email protected]>2016-05-12 13:51:01 +0200
committerJason Maskell <[email protected]>2016-05-12 13:51:01 +0200
commit3f13a04cda58b8cb6b3ae76ea663443611752a38 (patch)
treeb655d905a336dfe0722ddc8582f049875f8f6d3d /src/Entrypoints.cpp
parentRestructuring starts. Got some initial CMake problems sorted. Need to extend. (diff)
downloadwaveworks_archive-3f13a04cda58b8cb6b3ae76ea663443611752a38.tar.xz
waveworks_archive-3f13a04cda58b8cb6b3ae76ea663443611752a38.zip
Project now compiles with Cmake.
Modified FindDirectX to use the Windows SDK more, and added support for getting dxguid.lib
Diffstat (limited to 'src/Entrypoints.cpp')
-rw-r--r--src/Entrypoints.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Entrypoints.cpp b/src/Entrypoints.cpp
index ad94648..996fe55 100644
--- a/src/Entrypoints.cpp
+++ b/src/Entrypoints.cpp
@@ -431,8 +431,9 @@ const char* GFSDK_WAVEWORKS_CALL_CONV GFSDK_WaveWorks_GetBuildString()
#elif defined(TARGET_PLATFORM_ANDROID)
return "ANDROID_TEST";
// TIMT: TODO!!!
-#else
- extern const char* kNVWaveWorks_build_string;
+#else
+ //TODO: Fix this build string thing.
+ const char* kNVWaveWorks_build_string = "FixBuildString!";
return kNVWaveWorks_build_string;
#endif
}