我创建了一个可以正常工作的简单应用程序。但是,现在我需要链接以下目录中的一些库。
/opt/norton/lib
在我的制作文件中,我有以下作品,但我需要使用 cmake
LIBS_PATH = -L/opt/norton/lib
INC_PATH = -I/opt/norton/inc
LIBS = -lntctrl
在我的 CMakeList.txt 我有这个但不起作用我不断收到以下错误:
undefined reference to `nt_init'
这是我的 CMakeList.txt
# Includes files
INCLUDE_DIRECTORIES(/opt/norton/inc)
# Link libraries
LINK_DIRECTORIES(/opt/norton/lib)
# Add the library that is used by nt_init
TARGET_LINK_LIBRARIES(-lntctrl)
ADD_LIBRARY(application initialize_nw)
非常感谢您的任何建议,