本文主要是介绍[CMake] 示例 多模块与安装(01-basic_E-installing Windows环境下,无法打开*.lib),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
该示例地址:https://github.com/ttroy50/cmake-examples.git
学cmake看这个仓库就可以了
【问题】在Windows环境下,编译01-basic_E-installing时,提示找不到lib文件
【原因】在Windows中,需要为导出类或函数设置dllexport
之后,才会生成lib文件。
- 用官方给的例子。编译之后,你会发现,没有
cmake_examples_inst.lib
文件
解决
修改两个文件,其他文件不变
一、使用dllexport
将外部需要使用到的类导出
#ifndef __HELLO_H__
#define __HELLO_H__#ifdef HELLO_EXPORT
#define EXPORT __declspec(dllexport)
#else
#define EXPORT
#endifclass EXPORT Hello
{
public:void print();
};#endif
二、更改CMakeList.txt文件,为cmake_examples_inst库添加HELLO_EXPORT
宏
cmake_minimum_required(VERSION 3.5)project(cmake_examples_install)############################################################
# Create a library
#############################################################Generate the shared library from the library sources
add_library(cmake_examples_inst SHAREDsrc/Hello.cpp
)target_include_directories(cmake_examples_instPUBLIC ${PROJECT_SOURCE_DIR}/include
)
# 为cmake_examples_inst库添加宏HELLO_EXPORT,以便它能生成.lib文件(Windows中,dllexport之后才会生成.lib文件)
target_compile_definitions(cmake_examples_inst PRIVATE HELLO_EXPORT)############################################################
# Create an executable
############################################################# Add an executable with the above sources
add_executable(cmake_examples_inst_binsrc/main.cpp
)# link the new hello_library target with the hello_binary target
target_link_libraries( cmake_examples_inst_binPRIVATE cmake_examples_inst
)############################################################
# Install
############################################################# Binaries
install (TARGETS cmake_examples_inst_binDESTINATION bin)# Library
# Note: may not work on windows
install (TARGETS cmake_examples_instLIBRARY DESTINATION lib)# Header files
install(DIRECTORY ${PROJECT_SOURCE_DIR}/include/ DESTINATION include)# Config
install (FILES cmake-examples.confDESTINATION etc)
结果
这篇关于[CMake] 示例 多模块与安装(01-basic_E-installing Windows环境下,无法打开*.lib)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!