Created
March 3, 2011 12:20
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- 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