码迷,mamicode.com
首页 > 其他好文 > 详细

cmake编译多个文件

时间:2020-02-06 22:57:33      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:std   tab   str   exe   cmake   table   tle   demo   cmak   

demo.h

#ifndef UNTITLED_HEADER_DEMO_H
#define UNTITLED_HEADER_DEMO_H

void printHello(char *name);

#endif //UNTITLED_HEADER_DEMO_H

demo.c

//
// Created by gxf on 2020/2/6.
//
#include <stdio.h>

#include "header-demo.h"

void printHello(char *name) {
    printf("hello %s\n", name);
}

main.c

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "header-demo.h"

int main() {
    char *name = "guanxianseng";
    printHello(name);

    return 0;
}

cmakelist.txt

# main.c
add_executable(main main.c header-demo.h header-demo.c)

  

cmake编译多个文件

标签:std   tab   str   exe   cmake   table   tle   demo   cmak   

原文地址:https://www.cnblogs.com/luckygxf/p/12271240.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!