Search found 446 matches

by barbara
Mon May 29 2023 5:24 pm
Forum: User Support
Topic: Problem building Kitchensink with VS2022
Replies: 12
Views: 12132

Re: Problem building Kitchensink with VS2022

I want a GUI-RAD System with visual designer and native compiled language and static linking. Just thought I would add a bit more information since you seem interested in using C++. Various members of our CopperSpice team have been involved in this language since well before the C++98 release. It i...
by barbara
Sat May 27 2023 10:43 pm
Forum: Developers
Topic: Exception Related to String Encoding?
Replies: 5
Views: 10048

Re: Exception Related to String Encoding?

In Copperspice it appears that both the application and copperspice libraries have to both be Release or Debug mode. Yes, both CS and your application need to be in the same mode. Typically this is not an issue since debug builds are not distributed. I assume this is because it uses the Ninja . . ....
by barbara
Sat May 27 2023 4:09 pm
Forum: User Support
Topic: Problem building Kitchensink with VS2022
Replies: 12
Views: 12132

Re: Problem building Kitchensink with VS2022

So probably, I must change the CMakeLists.txt We would strongly advise against changing our CS build files since they are working. In our CI we have tested the steps we did and they work. I am not sure at this time what step is causing you a problem. Let me offer you an alternative for building Cop...
by barbara
Fri May 26 2023 5:44 pm
Forum: User Support
Topic: Problem building Kitchensink with VS2022
Replies: 12
Views: 12132

Re: Problem building Kitchensink with VS2022

Please understand that MSVC and VS are a fully supported platform and has been for over 7 years. We have a lot of users on this platform and we can assure you it works. There is no issue with how MSVC sets up the project and then builds. It will "build" in the folder as you showed in your ...
by barbara
Fri May 26 2023 3:13 am
Forum: User Support
Topic: Problem building Kitchensink with VS2022
Replies: 12
Views: 12132

Re: Problem building Kitchensink with VS2022

I set the environment variable CMAKE_INSTALL_PREFIX to "C:\CSP\out\build\x64-Debug\lib". There are two problems here. (1) You should not be specifying a folder inside of your source directory. You need to tell CMake where to install, which should be a clean folder. (2) This variable shoul...
by barbara
Thu May 25 2023 6:05 pm
Forum: User Support
Topic: Problem building Kitchensink with VS2022
Replies: 12
Views: 12132

Re: Problem building Kitchensink with VS2022

I have set "YOUR_INSTALL_PATH" to C:\CSP where the cmakelists.txt is, is this correct? I would like to back up and add a bit of CMake information. CopperSpice is built out-of-tree, which is a very common practice. This is the only way VS will actually build a CMake project. There are thre...
by barbara
Wed May 24 2023 9:34 pm
Forum: User Support
Topic: Problem building Kitchensink with VS2022
Replies: 12
Views: 12132

Re: Problem building Kitchensink with VS2022

Peter, 1) Although you mentioned using Visual Studio 2022, you are probably using the MSVC compiler with the Visual Studio IDE. This is supported however our CI server uses Visual Studio 2019. The binary files we released for MSVC are fully tested. For the complete list of our supported platforms yo...
by barbara
Tue May 23 2023 7:57 pm
Forum: Announcements
Topic: CopperSpice 1.8.2
Replies: 0
Views: 20396

CopperSpice 1.8.2

CopperSpice 1.8.2 was released on May 22 2023 This release includes major enhancements to the Unicode CLDR locale system, changes for newer versions of Windows, internal redesign of QSettings, and improvements to QUniquePointer and QScopedPointer. Several warnings were resolved. For information abou...
by barbara
Tue May 23 2023 7:48 pm
Forum: Developers
Topic: Please help me compilated and link my branch CopperSpice!
Replies: 7
Views: 8872

Re: Please help me compilated and link my branch CopperSpice!

Prabhupada.h and files QPrabhupada.cpp they work very well when built locally, but the PrabhupadaDictionary application is not built from the Prabhupada library. That's the problem. The terminology "building locally" means to build on your computer. It is not clear what you mean by it wor...
by barbara
Mon May 22 2023 1:22 am
Forum: Developers
Topic: Please help me compilated and link my branch CopperSpice!
Replies: 7
Views: 8872

Re: Please help me compilated and link my branch CopperSpice!

We have a few suggestions based on many years of programming experience. Keep in mind, the following are based on our opinion and other developers may offer you ideas you prefer. 1) Naming things like classes, variables, and even libraries is not simple and in fact can be really hard. If you are rel...