Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用ubuntu 12.03并尝试使用Symbolicc++库,它在它的 README 文件中指定使用该库的程序应该使用 command 编译g++ -o program program.cpp -lsymbolicc++。我想知道如何-lsymbolicc++在cmakelists.txt文件中输入过去的补丁并在 kdevelop 上工作?
ubuntu 12.03
Symbolicc++
g++ -o program program.cpp -lsymbolicc++
-lsymbolicc++
cmakelists.txt
如果您已经将程序作为可执行文件添加到 cmakelists.txt a'la;
add_executable(program program.cpp)
那么你可以添加
target_link_libraries(program symbolicc++)
在链接时添加该库。