Re: [GNC-dev] [GNC] Dipping my toes into Scheme

2020-03-23 Thread Christopher Lam
This is more suitable for devel. On Mon, 23 Mar 2020 at 11:29, Michael Hendry wrote: > Rather than dive into Scheme programming with a completely new report, I’d > like to try editing an existing report to provide a little customisation. > I’m looking at the experimental report balsheet-pnl.scm

Re: [GNC-dev] Unable to run test on mac os.

2020-03-23 Thread John Ralls
Jean, At this point the build messages from libgtest.a are more interesting because that's what we're trying to coerce Xcode into putting somewhere different. I trust that you started fresh from an empty build dir after changing common/test-core/CMakeLists.txt. Regards, John Ralls > On Mar 22

Re: [GNC-dev] Unable to run test on mac os.

2020-03-23 Thread Jean Laroche
Yes, I wiped everything out, changed common/test-core/CMakeLists.txt and reran the cmake command that creates the xcode project. LMK if I can provide more testing. I'm definitely not familiar with cmake (only started using it at work in the past couple months). J. On 3/23/20 9:34 AM, John Rall

[GNC-dev] Advice on what to look at next

2020-03-23 Thread jeanl
Devs, Can you point me to something you think needs to be looked at sooner rather than later in the gnucash code? I find that bugzilla does not give a good image of bug priority, but I'm sure you guys have a good idea of what needs to be fixed next. I wouldn't mind helping with that. Thanks, Jean

Re: [GNC-dev] Advice on what to look at next

2020-03-23 Thread Christopher Lam
For a *very* high level overview, see the design goals at https://wiki.gnucash.org/wiki/Release_Schedule Or, write tests and refactor the existing hacks. Or, feel free to squash bugs at leisure! On Mon, 23 Mar 2020 at 17:16, jeanl wrote: > Devs, > Can you point me to something you think needs to

Re: [GNC-dev] Advice on what to look at next

2020-03-23 Thread Jean Laroche
How far along are you on 4.0? Is the planned 28 June 2020 release reasonable? J. On 3/23/20 2:12 PM, Christopher Lam wrote: For a /very/ high level overview, see the design goals at https://wiki.gnucash.org/wiki/Release_Schedule Or, write tests and refactor the existing hacks. Or, feel free to

Re: [GNC-dev] Advice on what to look at next

2020-03-23 Thread John Ralls
It's up in the air. The major sticking point is that I'm working on a major rewrite of the options system from an ugly mixture of C and Scheme to C++. I'd hoped to have it far enough along by now to start test releases, but it's not. The back end is mostly done and I'm 3/4 through with the GUI.

Re: [GNC-dev] Advice on what to look at next

2020-03-23 Thread Chris Graves
For all you devs, it’s understood(or it should be) that what you do for this project is a labor of love. Take your time, relax and just enjoy the fixes/enhancements that you bring to this project. Who cares if a deadline needs to slip, just have fun!!! Thank you devs!!! Chris > On Mar 23, 20

Re: [GNC-dev] Unable to run test on mac os.

2020-03-23 Thread John Ralls
For that solution it should have been CMAKE_CURRENT_BINARY_DIR instead of CMAKE_BINARY_DIR, but I decided instead to add a generator statement so that it would put libgtest.a and libgmock.a where Xcode expects them. I also added CONFIGURATIONS statements to the add_test specs so that all of the

Re: [GNC-dev] [GNC] Dipping my toes into Scheme

2020-03-23 Thread Christopher Lam
This may indicate a Mac .app issue -- maybe it doesn't like being modified. For that matter it may be much safer to play on a Linux VM and downloading the sources instead. Alternatively try the config-user.scm method on https://wiki.gnucash.org/wiki/Custom_Reports On Mon, 23 Mar 2020 at 22:13, Mic

Re: [GNC-dev] Unable to run test on mac os.

2020-03-23 Thread jean
Did you push to master? Or does this live outside of git? I don't see any change. On 3/23/20 6:02 PM, John Ralls wrote: For that solution it should have been CMAKE_CURRENT_BINARY_DIR instead of CMAKE_BINARY_DIR, but I decided instead to add a generator statement so that it would put libgtest.