Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save 573/852684 to your computer and use it in GitHub Desktop.
Save 573/852684 to your computer and use it in GitHub Desktop.
The build with mingw broke when using the original addons/CMakeLists.txt file, so I simply disabled the addons where the error appeared in the build log (thanks to cmake)
--- E:\temp\stevedekorte-io-a0187b3\addons\CMakeLists_original.txt 2011-03-03 12:06:38 +0000
+++ E:\temp\stevedekorte-io-a0187b3\addons\CMakeLists.txt 2011-03-03 12:11:06 +0000
@@ -73,7 +73,7 @@
add_subdirectory(MySQL)
#add_subdirectory(NetworkAdapter)
add_subdirectory(NotificationCenter)
-add_subdirectory(Oauth) # OAuth should no longer break CMake configuration on Windows now.
+#add_subdirectory(Oauth) # OAuth should no longer break CMake configuration on Windows now.
#add_subdirectory(ODE) # XXX: Can't meet dependencies
#add_subdirectory(ObjcBridge) # XXX: Broken for me -- Objective-C 2.0 not supported
add_subdirectory(Obsidian)
@@ -92,7 +92,7 @@
add_subdirectory(SGML)
add_subdirectory(SHA1)
#add_subdirectory(SQLite) # XXX: Want to delete in favour of SQLite3
-add_subdirectory(SQLite3)
+#add_subdirectory(SQLite3)
add_subdirectory(SampleRateConverter)
add_subdirectory(SecureSocket)
#add_subdirectory(SkipDB) # XXX: Disabled...why?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment