多目录工程的CmakeLists.txt编写(自动添加多目录下的文件)

实现类似于vs中工程的CMakeLists.txt的编写。功能为main.cpp调用hello.cpp 的hello()函数,world.cpp的world()函数。使用自动添加多目录下的文件,用add_library方式形成library添加进工程中,适合ubuntu环境下的cmake编译方式。

转发自:https://blog.csdn.net/ktigerhero3/article/details/70313350

1.工程目录

主文件夹helloworld下有两个文件夹,分别是hello和world,另外主文件夹下还有main.cpp文件,截图如下:

这里写图片描述

2.主函数main.cpp

#include <stdio.h>
#include "hello.h"
#include "world.h"
int main()
{
    hello();
    world();
    return 0;
}

3.顶层CMakeLists.txt

cmake_minimum_required(VERSION 2.8)
project(helloworld)

# Add the source in project root directory
#aux_source_directory(. DIRSRCS)#包含主文件夹下的main.cpp文件
# Add header file include directories
include_directories(./ ./hello ./world)#添加多目录的路径
# Add block directories
add_subdirectory(hello)#添加hello文件夹中的hello库
add_subdirectory(world)#添加world文件夹中的world库
# Target
#add_executable(helloworld ${DIRSRCS})#将主文件夹下的main.cpp文件(此处只有一个CPP文件,多个CPP也是可以的)编译形成工程的可执行文件helloworld.o
add_executable(helloworld main.cpp)#上述方法有问题,这种方法才有效
target_link_libraries(helloworld hello world)#将多目录下的hello库和world库链接上可执行文件helloworld.o

4.hello文件夹

CMakeLists.txt

cmake_minimum_required(VERSION 2.8)
aux_source_directory(. DIR_HELLO_SRCS)
add_library(hello ${DIR_HELLO_SRCS})

hello.cpp

#include "hello.h"
void hello()
{
    printf("hello\n");
}

hello.h

#ifndef HELLO_H
#define HELLO_H
#include <stdio.h>
void hello();
#endif

5.world文件夹

CMakeLists.txt

cmake_minimum_required(VERSION 2.8)
aux_source_directory(. DIR_WORLD_SRCS)
add_library(world ${DIR_WORLD_SRCS})

world.cpp

#include "world.h"
void world()
{
    printf("world\n");
}

world.h

#ifndef WORLD_H
#define WORLD_H
#include <stdio.h>
void world();
#endif

猜你喜欢

转载自blog.csdn.net/qq_36355662/article/details/80059432
今日推荐