Git Product home page Git Product logo

Comments (8)

GoogleCodeExporter avatar GoogleCodeExporter commented on June 7, 2024
I'm using Xcode 3.2.1

Original comment by [email protected] on 27 Mar 2010 at 9:49

from libmv.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 7, 2024
3/27/10 3:07:35 PM  Xcode[851]  CFPropertyListCreateFromXMLData(): Old-style plist
parser: missing semicolon in dictionary.

only clue I have.

Original comment by [email protected] on 27 Mar 2010 at 10:16

from libmv.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 7, 2024
It certainly a Cmake error. Have you try to generate a Code::Blocks project and 
compile it. Code::blocks must run on Mac.

Original comment by [email protected] on 29 Mar 2010 at 12:42

from libmv.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 7, 2024
You can get Xcode projects to build using these changes.
However, I haven't been able to get cmake to understand to use the line
on a mac IF Xcode is your generator. So, the Unix Makefile system on mac is 
broken
however the line inside src/libmv/image/CMakeList.txt
was the issue.


Index: libmv/image/CMakeLists.txt
===================================================================
--- libmv/image/CMakeLists.txt  (revision 848)
+++ libmv/image/CMakeLists.txt  (working copy)
@@ -1,4 +1,10 @@
-ADD_DEFINITIONS(-DTHIS_SOURCE_DIR="\\"${CMAKE_CURRENT_SOURCE_DIR}\\"")
+# Note how slashes are handled
+# http://msdn.microsoft.com/en-us/library/a1y7w461%28VS.80%29.aspx
+if (APPLE)
+   ADD_DEFINITIONS(-DTHIS_SOURCE_DIR=\\\\"${CMAKE_CURRENT_SOURCE_DIR}\\\\")
+else()
+   ADD_DEFINITIONS(-DTHIS_SOURCE_DIR="\\"${CMAKE_CURRENT_SOURCE_DIR}\\"")
+endif()

 IF(WIN32)
   INCLUDE_DIRECTORIES(
Index: CMakeLists.txt
===================================================================
--- CMakeLists.txt  (revision 848)
+++ CMakeLists.txt  (working copy)
@@ -36,7 +36,7 @@
 ENDIF (WIN32)

 IF(CMAKE_COMPILER_IS_GNUCXX)
-  SET(CMAKE_CXX_FLAGS "-Wall -W -Wno-sign-compare -Wno-strict-aliasing")
+  SET(CMAKE_CXX_FLAGS "-Wall -W -Wno-sign-compare -Wno-strict-aliasing 
-fpermissive")
   ADD_DEFINITIONS(-D_GNU_SOURCE)
 ENDIF(CMAKE_COMPILER_IS_GNUCXX)

Original comment by [email protected] on 10 Apr 2010 at 5:00

from libmv.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 7, 2024
It gets past the Xcode Parse error but the Xcode project still has issues 
building.
I'll keep working on it.

Original comment by [email protected] on 10 Apr 2010 at 5:10

from libmv.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 7, 2024
have there been any further updates regarding these issues, XCode project would 
be great!

Original comment by [email protected] on 16 May 2011 at 4:03

from libmv.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 7, 2024
I second that. Any news on this?

Original comment by perarnetron on 25 Feb 2012 at 2:17

from libmv.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 7, 2024
Moving to https://developer.blender.org/tag/libmv/; closing (reopen there if 
needed)

Original comment by [email protected] on 11 May 2015 at 8:13

  • Changed state: WontFix

from libmv.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.