Search found 1001 matches

by peterl94
Mon Aug 19, 2013 6:00 pm
Forum: Install / Compile
Topic: Mac build problems
Replies: 16
Views: 4275

Re: Mac build problems

I ran into the same problem when building pivy 0.3.0, and discovered it was fixed after that version in commit 93edd121 . But you should be able to build FreeCAD's pivy just fine, at least I was able to on OS X 10.8. How long did you wait for coin_wrap.cpp.o? Maybe it just takes a while. As for the ...
by peterl94
Sun Aug 18, 2013 9:11 pm
Forum: Install / Compile
Topic: CMake generated application bundle
Replies: 4
Views: 2166

Re: CMake generated application bundle

Yep, it's a clone of master. And you're right about the error; OCC_LIBRARY is not being defined. I mistakenly thought that it always gets defined, but I realize now that it only gets defined when the OCE cmake files can't be found (which happened to me for some reason, even though I had installed OC...
by peterl94
Fri Aug 16, 2013 2:14 pm
Forum: Help on using FreeCAD
Topic: Sketch plane orientation
Replies: 2
Views: 1397

Re: Sketch plane orientation

Ah, okay. I figured I was just wishful thinking ;)
by peterl94
Thu Aug 15, 2013 3:43 am
Forum: Help on using FreeCAD
Topic: Sketch plane orientation
Replies: 2
Views: 1397

Sketch plane orientation

Hey, Is it possible to specify the orientation of a sketch mapped to a face? I don't find the way it orients the sketch in some cases very intuitive. If I pad a sketch in the YZ plane and then create a sketch on a face in the XZ plane, the sketch's horizontal and vertical axes are switched (that is,...
by peterl94
Wed Aug 14, 2013 1:34 am
Forum: Install / Compile
Topic: CMake generated application bundle
Replies: 4
Views: 2166

CMake generated application bundle

Hi, I made some modification to FreeCAD's CMake files to be able to automatically create a relocatable Mac application bundle, by just doing make install . I pushed my changes to my newly created FreeCAD repo if anyone want's to try it out. https://github.com/peterl94/FreeCAD_sf_master/tree/osx-app ...
by peterl94
Fri Aug 02, 2013 8:47 pm
Forum: Install / Compile
Topic: Mac Compile Help
Replies: 18
Views: 3837

Re: Mac Compile Help

Ah, yeah that is a cool feature :)

Update on qt_menu.nib:
There is no need to mess around with a special directory structure, qt_menu.nib just needs to be in the lib folder with the Qt libraries.
by peterl94
Fri Aug 02, 2013 4:51 pm
Forum: Install / Compile
Topic: Mac Compile Help
Replies: 18
Views: 3837

Re: Mac Compile Help

Well, my build is not in a shareable state yet, but I can tell you what I did. First of all, I compiled all of the debendencies manually, because I'm trying to put together a "LibPack" like there is for windows (otherwise, I probably would have used macports). So these are the libraries I'...
by peterl94
Thu Aug 01, 2013 7:54 pm
Forum: Install / Compile
Topic: Mac Compile Help
Replies: 18
Views: 3837

Re: Mac Compile Help

I had that error too... I discovered it was because the fortran code wasn't being built and linked to the c++ code, which was caused by a if statement in the main CMakeLists.txt. # Needed for salomesmesh if(CMAKE_COMPILER_IS_GNUCXX) ENABLE_LANGUAGE(Fortran) endif(CMAKE_COMPILER_IS_GNUCXX) So if you ...
by peterl94
Thu Aug 01, 2013 2:01 am
Forum: Install / Compile
Topic: Mac Compile Help
Replies: 18
Views: 3837

Re: Mac Compile Help

Hi jamesl73,

I've been atempting a mac build too and had the same problem. I solved it by setting LIBRARY_PATH environment variable to the path of the gfortran library. I'm sure there is a cmake variable that would have the same effect, but I didn't take the time to find out.
by peterl94
Tue Jul 30, 2013 9:48 pm
Forum: Install / Compile
Topic: How is the LibPack made
Replies: 3
Views: 909

Re: How is the LibPack made

Cool, thanks! I've got just about everything compiled. Now I just need to write the CMake script, and solve some annoying mac bundle problems.