Search found 3624 matches

by chennes
Wed Apr 17, 2024 7:51 pm
Forum: Developers corner
Topic: FreeCAD build requires gtest (googletest), but the build system does not check for it
Replies: 4
Views: 226

Re: FreeCAD build requires gtest (googletest), but the build system does not check for it

GoogleTest is included in the source tree via a submodule -- you must run

Code: Select all

git submodule update --init
by chennes
Thu Apr 11, 2024 4:21 pm
Forum: Open discussion
Topic: Issue with forum register
Replies: 4
Views: 350

Re: Issue with forum register

Yes, I see it. I have corrected the email address (yes, there was a typo in it). You should be able to validate that account now, and then we can delete the extra one.
by chennes
Thu Apr 11, 2024 3:57 pm
Forum: Open discussion
Topic: Issue with forum register
Replies: 4
Views: 350

Re: Issue with forum register

Click on the "Contact us" link at the bottom of a forums page and put your details (including relevant email addresses) into the form. That sends @yorik and me an email and we can take care of it.
by chennes
Wed Apr 10, 2024 3:24 am
Forum: Install / Compile
Topic: [snap][0.22] Missing libyaml-cpp
Replies: 3
Views: 343

Re: [snap][0.22] Missing libyaml-cpp

Thanks for the report -- I think I've fixed it in the snap setup, please let me know when you have a chance to try it again.
by chennes
Tue Apr 09, 2024 6:29 pm
Forum: Developers corner
Topic: Python string formatting in Console.Print*
Replies: 1
Views: 264

Re: Python string formatting in Console.Print*

For display to the console you may use whichever style you prefer, or find clearer in that particular case. If your text is intended to be translated (that is, it lies within a call to "translate()") then you must use the .format style, translation string extraction does not work with f-st...
by chennes
Wed Apr 03, 2024 1:24 pm
Forum: CfdOF / CFD
Topic: Material not found
Replies: 13
Views: 841

Re: Material not found

@grandcross does this look familiar to you?
by chennes
Tue Apr 02, 2024 10:01 pm
Forum: Open discussion
Topic: North American Meetup August 2024?
Replies: 19
Views: 3833

Re: North American Meetup August 2024?

Sounds great, I'm planning on attending.
by chennes
Tue Apr 02, 2024 2:35 am
Forum: Developers corner
Topic: Compiling with FC_USE_TNP_FIX
Replies: 6
Views: 704

Re: Compiling with FC_USE_TNP_FIX

To enable this flag, you need to set the C++ compiler flags. This can be done in a number of different ways, but for FreeCAD purposes the most straightforward it to set it via the cMake command line:

Code: Select all

cmake --build /path/to/source -DCMAKE_CXX_FLAGS="-DFREECAD_USE_TNP_FIX"
by chennes
Mon Apr 01, 2024 1:12 pm
Forum: Help on using FreeCAD
Topic: Addon manager - apply 0 available updates
Replies: 3
Views: 299

Re: Addon manager - apply 0 available updates

Yeah, I think it also used to say "No updates available" or something like that. Someone want to make a GH Issue?
by chennes
Mon Apr 01, 2024 4:17 am
Forum: Developers corner
Topic: Rename Parameter group from python
Replies: 4
Views: 516

Re: Rename Parameter group from python

We don't provide a Python wrapper to the copyTo C++ method, which would be the obvious choice. Do you need to do it in 0.21, or can we just add it in .22dev?