kdevelop4

How to build a project using Crypto++ library in kdevelop

本秂侑毒 提交于 2019-12-21 21:07:15
问题 I wrote a small program that uses the crypto++ library using kdevelop in Ubuntu . I get the output correctly when I compile it from the terminal using -lcryptopp . I would like to build and execute the program using the cmake from kdevelop itself. How can I include the CRYPTOPP_DIR in the cmake configuration for doing this. Any help will be appreciated. Thankyou. 回答1: Adding the following piece of code to cmake file helped me: FIND_LIBRARY(CRYPTOPP crypto++ /usr/lib) ## location of

KDevelop4: Error while loading shared libraries

倖福魔咒の 提交于 2019-12-13 17:26:37
问题 I am trying to use the Intel MKL libraries for the first time. I am using CMake to build a simple project in which MKL is used. I work in the KDevelop 4.6 environment. The project is built and installed without errors. Linking the libraries is thus succesful. While executing within KDevelop, I get the following error: Error while loading shared libraries: libmkl_intel_lp64.so: cannot open shared object file: No such file or directory The CMakeLists file looks essentially as follows: project

How to build a project using Crypto++ library in kdevelop

 ̄綄美尐妖づ 提交于 2019-12-04 17:43:25
I wrote a small program that uses the crypto++ library using kdevelop in Ubuntu . I get the output correctly when I compile it from the terminal using -lcryptopp . I would like to build and execute the program using the cmake from kdevelop itself. How can I include the CRYPTOPP_DIR in the cmake configuration for doing this. Any help will be appreciated. Thankyou. Adding the following piece of code to cmake file helped me: FIND_LIBRARY(CRYPTOPP crypto++ /usr/lib) ## location of libcryptopp.so or libcryptopp.a IF ( CRYPTOPP ) TARGET_LINK_LIBRARIES(${PROGRAM_NAME} cryptopp ) ## Specifying

Is there a kdevelop version that i can install on windows?

情到浓时终转凉″ 提交于 2019-12-03 11:47:37
问题 is there any other than using Cygwin? thanks! 回答1: KDE 4 supports Windows, and you can check the install methods from this and here. Note that you will have to use either MinGW or MSVC as the compiler, though. 回答2: I've installed kdevelop on win7, using emerge: http://techbase.kde.org/Getting_Started/Build/Windows/emerge. To get it all working is a pain in the ass, mostly because there is no guide. Here is how I did it: Install python and git. Create a directory where you want to install kde.

KDevelop with CMake project - how to manage debug and release builds?

梦想的初衷 提交于 2019-11-30 04:12:07
问题 Does KDevelop support switching between debug and release builds for CMake projects? 回答1: Sure, click Open configuration and then + at the top of window. This would allow you to add another build directory and you will be able to switch between them. 来源: https://stackoverflow.com/questions/15064715/kdevelop-with-cmake-project-how-to-manage-debug-and-release-builds