このCMAKEを機能させるために、見つけたほぼすべてのチュートリアル/ウィキ/SOの投稿、ページ、スニペットを読んで試しました....
私は非常に単純なディレクトリ構造を持っています:
ROOT/
|- CMakeLists.txt
|- main.cpp
|- sub/
|-CMakeLists.txt
|-subx/
|-CMakeLists.txt
|-subx.h
|-subx.cpp
|-suby/
|-CMakeLists.txt
|-suby.h
|-suby.cpp
main.cpp は非常に単純な cpp プログラムです。
//omitting all unnecessary code
int main() {
subx s;
s.defined_method();
s.another_defined_method(1);
return 0;
}
皆さんのために、subx と suby の定義は正しく、問題なく動作すると想定できます。
CMake でコンパイルすると、次のエラーが発生します。
"/path/to/cmake" --build /path/to/Debug --target CS220_Project -- -j 4
Linking CXX executable simple_project
Undefined symbols for architecture x86_64:
"subx::defined_method()", referenced from:
_main in main.cpp.o
"subx::another_defined_method(int)", referenced from:
_main in main.cpp.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[3]: *** [simple_project] Error 1
make[2]: *** [CMakeFiles/simple_project.dir/all] Error 2
make[1]: *** [CMakeFiles/simple_project.dir/rule] Error 2
make: *** [simple_project] Error 2
ルート CMakeLists.txt ファイルは次のようになります。
cmake_minimum_required(VERSION 2.8.4)
project(simple_project)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(SOURCE_FILES main.cpp)
add_subdirectory(sub)
add_executable(simple_project ${SOURCE_FILES})
サブ CMakeLists.txt ファイルは次のようになります。
add_subdirectory(subx)
add_subdirectory(suby)
subx & suby CMakeLists.txt ファイルの外観: (それぞれの区別が含まれています)
set(SUBX_SOURCES subx.cpp)
#Add any files in this directory
add_executable(SUBX ${SUBX_SOURCES})
add_library、file (glob) などを試してみました。私の人生では、サブディレクトリにあるファイルを取得して main.cpp プログラムでコンパイルすることはできません。