我想做的是:
- 创建一个共享库并导出其 API 以供其他程序使用
- 在使用该库的同一项目中创建一个简单的可执行文件(例如,展示如何使用该库的具体示例
- 使用 cmake 构建它,必须使用 Visual Studio (2010) 和 windows 7
我试过这段代码(快速测试用例):
CMakeLists.txt
PROJECT (minimalcpp)
CMAKE_MINIMUM_REQUIRED (VERSION 2.6)
SET(LIBSAMPLE_HEADERS func_simple.h)
SET(LIBSAMPLE_SRCS func_simple.cpp)
ADD_LIBRARY (minimalcpp SHARED ${LIBSAMPLE_SRCS})
ADD_EXECUTABLE (test-pure-cpp test-pure-cpp.cpp)
TARGET_LINK_LIBRARIES (test-pure-cpp minimalcpp)
# THIS WORKS BUT IT IS NOT WHAT I WANT :
# ADD_EXECUTABLE (test-pure-cpp test-pure-cpp.cpp ${LIBSAMPLE_SRCS})
宏.h
#ifndef MACROS_H
#define MACROS_H
#if defined _WIN32 || defined __CYGWIN__
#if minimalcpp_EXPORTS
#define MINIMALCPP_API __declspec(dllexport)
#else
#define MINIMALCPP_API __declspec(dllimport)
#endif
#endif
#endif
func_simple.h
#ifndef LIB_SAMPLE_FUNC_SIMPLE_H
#define LIB_SAMPLE_FUNC_SIMPLE_H
#include "macros.h"
namespace sample {
MINIMALCPP_API void f1(int nmax);
}
#endif // LIB_SAMPLE_FUNC_SIMPLE_H
func_simple.cpp
#include <iostream>
#include "func_simple.h"
void sample::f1(int nmax) {
int i ;
for(i=0 ; i < nmax ; i++) {
std::cout << i << " -> " << i*i << std::endl;
}
}
测试纯cpp.cpp
#include "func_simple.h"
int main(int argc, char *argv[]){
sample::f1(5);
return 0;
}
此代码编译但在执行时直接崩溃。
错误信息 :
Le programme s'est terminé subitement.
... a quitté avec le code -1073741515
我是 Windows 上 C++ 的初学者,我做错了什么?非常感谢