Search found 452 matches

by barbara
Fri May 26 2023 3:13 am
Forum: User Support
Topic: Problem building Kitchensink with VS2022
Replies: 12
Views: 12369

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: 12369

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: 12369

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: 20602

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: 8970

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: 8970

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...
by barbara
Fri May 19 2023 7:44 pm
Forum: Installation
Topic: MSVC 2019 Compiler Warnings
Replies: 1
Views: 4073

Re: MSVC 2019 Compiler Warnings

MSVC 2022 (compiling 2019 project 1 Are you trying to build CopperSpice with MSVC 2022 and your application with MSVC 2019? 2 As a side note, MSVC needs everything built in either debug or release. Mixing the two does not always work as expected. warning C5030: attribute 'gnu::used' is not recogniz...
by barbara
Fri May 19 2023 6:40 pm
Forum: Developers
Topic: Exception Related to String Encoding?
Replies: 5
Views: 10192

Re: Exception Related to String Encoding?

a.setApplicationName("JWC") Runtime exception (Built Copperpsice 1.8.1 from source with MSVC 2019 in 64-bit and am using this version for my program) We have tested your code on MSVC 19.29.30147 in release mode and we have no compiler errors. 1 Is there a way for you to test on this exact...
by barbara
Fri May 19 2023 5:40 pm
Forum: Developers
Topic: Please help me compilated and link my branch CopperSpice!
Replies: 7
Views: 8970

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

not everything can be divided without using the CopperSpice code This is not correct and almost always indicates something about the design in your code is not valid. We suggest you back up and think about what you believe needed changing in CopperSpice. Discuss what you want to do and why. Let's t...
by barbara
Sun May 14 2023 4:18 am
Forum: Developers
Topic: Please help me compilated and link my branch CopperSpice!
Replies: 7
Views: 8970

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

But at the moment the assembly of Prabhupada Dictionary is not possible, because CopperSpice is not being assembled. ( A ) We are not sure what this means since CS is not written in assembly, it is C++ code. You need to compile CopperSpice and then link with your application. ( B ) You have stated ...