Using the assembly to work in buntu 11.04, now in 12.04 this is not so.
There is a conflict with the location of someLib.so . That is, he is looking in the wrong place. /usr/lib/here/someLib.so is the correct location.
When I run the cm configuration in cmcm, he noticed a conflict, once. Now ccmake no longer complains, but the error still exists. runtime library [someLib.so] in /usr/lib may be hidden by files in: /usr/lib/here
The lines in the CMakeLists.txt file that cause a build error are as follows:
ADD_EXECUTABLE(test main.cpp) TARGET_LINK_LIBRARIES(test moreStuff evenMoreStuff)
I see a problem in the build.make file. What is generated by ccmake. I can't figure out where ccmake gets the idea that someLib.so is located at /usr/lib/ and not @ /usr/lib/here/ . I suppose this will be the SET() statement. I do not find it.
1) What is called a configuration file (ccmake 'c' cmd)? Where will it be (the same deer?)? I believe that if I do, I can again see the error. (Changing CMakeFile.txt doesn't look like this.)
2) How to find out where the location of someLib.so ? (What am I looking for?)
I hate CCMAKE. Thanks
cmake
Doug
source share