摘要: CMakeLists.txt # project(工程名) project(blog-3123958139-1) # add_library(链接库名称 SHARED 链接库代码) add_library(dll_ SHARED dll_.cpp) dll_.cpp #include using namespace std; // c++ 结构体定义 struct cpp_struck_... 阅读全文
posted @ 2016-06-25 16:05 佩雷尔曼的信徒 阅读(2467) 评论(0) 推荐(0)
摘要: CMakeLists.txt # project(工程名) project(xxx) # add_library(链接库名称 SHARED 链接库代码) add_library(xxx SHARED xxx.cpp) xxx.cpp #include using namespace std; // c++ 结构体定义 struct struck_ { // 股票名,字符串 ... 阅读全文
posted @ 2016-06-25 01:14 佩雷尔曼的信徒 阅读(4606) 评论(0) 推荐(0)