我正在用CMake构建C++应用程序。但是它使用C语言中的一些源文件。这是简化的结构:
trunk/CMakeLists.txt:
project(myapp)
set(CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS} -g -Wall")
add_subdirectory (src myapp)
trunk/src/main.cpp:
#include "smth/f.h"
int main() { f(); }
trunk/src/CMakeLists.txt:
add_subdirectory (smth)
link_directories (smth)
set(APP_SRC main)
add_executable (myapp ${APP_SRC})
target_link_libraries (myapp smth)
主干/src/smth/f.h:
#ifndef F_H
#define F_H
void f();
#endif
主干/src/smth/f.c:
#include "f.h"
void f() {}
主干/src/smth/CMakeLists.txt
set (SMTH_SRC some_cpp_file1 some_cpp_file2 f)
add_library (smth STATIC ${SMTH_SRC})
问题是:我运行gmake,它将编译所有文件,并且在将所有库链接在一起时,我得到:
undefined reference to `f()` in main.cpp
如果我将f.c重命名为f.cpp,那么一切都会很好。有什么区别以及如何处理?
谢谢
最佳答案
将f.h更改为:
#ifndef F_H
#define F_H
#ifdef __cplusplus
extern "C" {
#endif
void f();
#ifdef __cplusplus
}
#endif
#endif