cmake生成so
文件目录结构
1 | ├── library |
library
library.h
1 |
|
library.cpp
1 |
|
CMakeLists.txt
1 | cmake_minimum_required(VERSION 2.8) |
编译 MySharedLib
1 | cd library |
test
man.cpp
1 |
|
CMakeLists.txt
1 | #cmake版本 |
编译并运行 test
1 | cd test |
1 | ├── library |
1 | #ifndef MYSHAREDLIB_LIBRARY_H |
1 | #include <iostream> |
1 | cmake_minimum_required(VERSION 2.8) |
1 | cd library |
1 | #include <iostream> |
1 | #cmake版本 |
1 | cd test |