Google Test的Project Makefile问题 [英] Project Makefile problems with Google Test

查看:102
本文介绍了Google Test的Project Makefile问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

一生中我无法弄清楚如何删除以下makefile中的mv语句

For the life of me I cannot figure out how to remove the mv statements in the following makefile

TEST_DIR = ../gtest
USER_DIR = src
TESTS_DIR = tests
OBJ_DIR = obj

CPPFLAGS += -isystem $(GTEST_DIR)/include -I$(USER_DIR)

CXXFLAGS += -g -Wall -Wextra

TESTS = test

GTEST_HEADERS = $(GTEST_DIR)/include/gtest/*.h \
                $(GTEST_DIR)/include/gtest/internal/*.h

all : $(TESTS)

clean :
    rm -rf obj
    rm -rf bin
    mkdir obj
    mkdir bin

GTEST_SRCS_ = $(GTEST_DIR)/src/*.cc $(GTEST_DIR)/src/*.h $(GTEST_HEADERS)

$(OBJ_DIR)/gtest-all.o : $(GTEST_SRCS_)
    $(CXX) $(CPPFLAGS) -I$(GTEST_DIR) $(CXXFLAGS) -c \
            $(GTEST_DIR)/src/gtest-all.cc
    mv gtest-all.o obj/gtest-all.o

$(OBJ_DIR)/gtest_main.o : $(GTEST_SRCS_)
    $(CXX) $(CPPFLAGS) -I$(GTEST_DIR) $(CXXFLAGS) -c \
            $(GTEST_DIR)/src/gtest_main.cc
    mv gtest_main.o obj/gtest_main.o

$(OBJ_DIR)/gtest.a : $(OBJ_DIR)/gtest-all.o
    $(AR) $(ARFLAGS) $@ $^ 

$(OBJ_DIR)/gtest_main.a : $(OBJ_DIR)/gtest-all.o $(OBJ_DIR)/gtest_main.o
    $(AR) $(ARFLAGS) $@ $^

$(OBJ_DIR)/addition.o : $(USER_DIR)/addition.cpp $(USER_DIR)/addition.h $(GTEST_HEADERS)
    $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $< 
    mv addition.o obj/addition.o

$(OBJ_DIR)/test.o : $(TESTS_DIR)/test.cpp $(USER_DIR)/addition.h $(GTEST_HEADERS)
    $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(TESTS_DIR)/test.cpp 
    mv test.o obj/test.o

test : $(OBJ_DIR)/addition.o $(OBJ_DIR)/test.o $(OBJ_DIR)/gtest_main.a
    $(CXX) $(CPPFLAGS) $(CXXFLAGS) -lpthread $^ -o $@

问题是mv test.o obj/test.o行以及其他类似的行.我知道有一种方法可以让您自动执行此操作,但是对于我的一生,我无法找到/找到它.

The problem is the mv test.o obj/test.o line and the others like it. I know there is a way to have make do this automatically for you but for the life of me I cannot find/figure it out.

这是我已修改为我工作的Google测试附带的预设的makefile.

This is the precanned makefile that comes with google test that I have modified to work for me.

推荐答案

类似

CPPFLAGS += -MMD -MP

gtest_objs := $(OBJ_DIR)/gtest_all.o $(OBJ_DIR)/gtest_main.o
my_objs    := $(OBJ_DIR)/addition.o $(OBJ_DIR)/test.o
all_objs   := $(gtest_objs) $(objs)

deps       := $(all_objs:.o=.d)

$(gtest_objs): CPPFLAGS += -I$(GTEST_DIR)
$(gtest_objs): $(OBJ_DIR)/gtest_%.o: $(GTEST_DIR)/src/gtest_%.cc
$(my_objs): $(OBJ_DIR)/%.o: $(USER_DIR)/%.cpp
$(all_objs):
    $(COMPILE.cpp) $(OUTPUT_OPTION) $<

-include $(deps)

all_objs的规则是从内置规则中复制的,与deps相关的内容将自动为您生成依赖项.

The rule for all_objs is copied from the builtin rule, and the deps-related stuff will generate dependencies for you automatically.

这篇关于Google Test的Project Makefile问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆