Search found 49 matches

by CandL
Wed Jun 24 2020 1:28 pm
Forum: Developers
Topic: Possible impending Qt fork and copperspice opportunity
Replies: 12
Views: 14645

Re: Possible impending Qt fork and copperspice opportunity

Wow ... let me catch my breath.... Seasoned_geek is on a roll. First let me say I too am some what of a "curmudgeon" but some of the statements appear a bit extreme. I also know this is a Copperspice forum but Open Source licensing is big factor.... my intent is to always do the "righ...
by CandL
Tue Apr 14 2020 8:02 pm
Forum: Installation
Topic: Copperspice with Qt Creator set up . NEED HELP
Replies: 2
Views: 8926

Re: Copperspice with Qt Creator set up . NEED HELP

Something to consider .... since you are on windows, did you consider using the MSVS 2019 Community Edition compiler? Notice I said compiler and not IDE. I concur that ninja is the right builder to combine with CMake ... it is fast and does a good job. I would start off building a HelloWorld app wit...
by CandL
Mon Mar 30 2020 10:45 am
Forum: User Support
Topic: How to translate this .pro file to build with Cs?
Replies: 15
Views: 19198

Re: How to translate this .pro file to build with Cs?

I know the debate of qmake (.pro) vs cmake will go on for some time. But even the Qt company is transitioning to CMake. QBS was supposed to be sort of a qmake ver 2, and was going to be the build platform for Qt 6. But then in late 2018 "Deprecation of Qbs" (https://www.qt.io/blog/2018/10/...
by CandL
Mon Feb 10 2020 1:00 pm
Forum: User Support
Topic: Does Jan Wilmans appear in Jason Turner “The Best Parts of C++"?
Replies: 2
Views: 6780

Does Jan Wilmans appear in Jason Turner “The Best Parts of C++"?

Ok not technical , but I think Jan is "value".... which is far better than virtual or even imaginary. I have seen Jan's name more that a few times associated with Copperspice...Jan is that you? CppCon 2019 Jason Turner “The Best Parts of C++" https://www.youtube.com/watch?v=iz5Qx18H6l...
by CandL
Wed Feb 05 2020 12:01 pm
Forum: Issues
Topic: Issue with documentation
Replies: 2
Views: 5987

Issue with documentation

I was looking at the page "CopperSpice Project Using CMake" (https://www.copperspice.com/docs/cs_overview/sample-cs-cmake.html) You have in red the words CMakeLists.txt and HelloLunch, these are not links ... but the CMakelists.txt are on the same page, ok this is fine. The "Hellolunc...
by CandL
Thu Jan 30 2020 1:49 pm
Forum: User Support
Topic: Opportunities?
Replies: 1
Views: 5654

Opportunities?

So there is a new elephant in the room: https://www.qt.io/blog/qt-offering-changes-2020 With follow on blog posts like: https://valdyas.org/fading/author/boud/ , and there are many more like this, so the natives are restless. This feels like a opportunity for CS. Can CS reach out to the Krita projec...
by CandL
Thu Nov 21 2019 1:06 pm
Forum: User Support
Topic: Has anyone built VTK apps with Copperspice?
Replies: 3
Views: 9862

Has anyone built VTK apps with Copperspice?

I saw a post on the VTK site from a year ago, where somebody asked the same question, but no response ... so asking here.

Regards
Carl
by CandL
Thu Nov 21 2019 12:55 pm
Forum: User Support
Topic: Qt Test or GoogleTest or other?
Replies: 3
Views: 10964

Re: Qt Test or GoogleTest or other?

I use Google Test across a range of applications and build systems. Works well enough for me.

Regards
Carl
by CandL
Fri Nov 15 2019 11:50 am
Forum: Installation
Topic: Copperspice 1.6 and Qt Creator 4.11 (Beta)
Replies: 8
Views: 11121

Re: Copperspice 1.6 and Qt Creator 4.11 (Beta)

Yup it is NOT Qt, and I should have said "Qversion=" but it gave me the correct answer 1.6.1. With that response I was confident I was actually using Copperspice and had not backed into a Qt install by mistake. The discussion on when to run the utility apps needs some clarification. When e...
by CandL
Wed Nov 13 2019 7:31 pm
Forum: Installation
Topic: Copperspice 1.6 and Qt Creator 4.11 (Beta)
Replies: 8
Views: 11121

Re: Copperspice 1.6 and Qt Creator 4.11 (Beta)

Yet another update .... built my first running Copperspice app using MSVS. #include "QString" #include "QVector" #include <QtGlobal> int main() { QString myStr = "Hello from CS"; QVector<QString> vector; vector << "alpha" << "beta" << "delta&quo...