简体   繁体   English

如何从Makefile中的其他目录导入所有源代码和头文件

[英]How to import all source code and header files from other directories in Makefile

I am very unfamiliar with makefiles and am trying to figure out how to setup googletest and the makefile in a project. 我非常不熟悉makefile文件,并试图找出如何在项目中设置googletest和makefile的方法。 How would one import all source and header files from the project which can be found in other directories, into the makefile build so that I could access the header files within the test files? 如何将项目中的所有源文件和头文件(可以在其他目录中找到)导入到makefile构建中,以便我可以访问测试文件中的头文件?

The structure looks like this 结构看起来像这样

project_root/
            commons/core/{lots of files}
            commons/backends/{lots of files}
            os/core/{lots of files}
            public/os/{lots of files}
            wsi/comp/{lots of files}
            tests/googletests/[Makefile tests/ include/ src/] # where I am testing from.

I would like to have all the .h and .cpp files accessible to files in tests/googletests/tests/ but I am unsure how to do that with the Makefile. 我希望所有.h和.cpp文件都可以通过tests / googletests / tests /中的文件访问,但是我不确定如何使用Makefile进行操作。

Inside the tests folder I am using the sample1.h, sample1.cc, and sample1_unnitetest.cc to play around with trying to load header files from other places found here: https://github.com/google/googletest/tree/master/googletest/samples 在tests文件夹中,我正在使用sample1.h,sample1.cc和sample1_unnitetest.cc尝试从此处的其他位置加载头文件: https : //github.com/google/googletest/tree/master / googletest / samples

The makefile i am using is: 我正在使用的makefile是:

# A sample Makefile for building Google Test and using it in user
# tests.  Please tweak it to suit your environment and project.  You
# may want to move it to your project's root directory.
#
# SYNOPSIS:
#
#   make [all]  - makes everything.
#   make TARGET - makes the given target.
#   make clean  - removes all files generated by make.

# Please tweak the following variable definitions as needed by your
# project, except GTEST_HEADERS, which you can use in your own targets
# but shouldn't modify.

# Points to the root of Google Test, relative to where this file is.
# Remember to tweak this if you move this file.
GTEST_DIR = .

# Where to find user code.
USER_DIR = ./tests

# Flags passed to the preprocessor.
# Set Google Test's header directory as a system directory, such that
# the compiler doesn't generate warnings in Google Test headers.
CPPFLAGS += -isystem $(GTEST_DIR)/include

# Flags passed to the C++ compiler.
CXXFLAGS += -g -Wall -Wextra -pthread

# All tests produced by this Makefile.  Remember to add new tests you
# created to the list.
TESTS = sample1_unittest

# All Google Test headers.  Usually you shouldn't change this
# definition.
GTEST_HEADERS = $(GTEST_DIR)/include/gtest/*.h \
                $(GTEST_DIR)/include/gtest/internal/*.h

# House-keeping build targets.

all : $(TESTS)

clean :
    rm -f $(TESTS) gtest.a gtest_main.a *.o

# Builds gtest.a and gtest_main.a.

# Usually you shouldn't tweak such internal variables, indicated by a
# trailing _.
GTEST_SRCS_ = $(GTEST_DIR)/src/*.cc $(GTEST_DIR)/src/*.h $(GTEST_HEADERS)

# For simplicity and to avoid depending on Google Test's
# implementation details, the dependencies specified below are
# conservative and not optimized.  This is fine as Google Test
# compiles fast and for ordinary users its source rarely changes.
gtest-all.o : $(GTEST_SRCS_)
    $(CXX) $(CPPFLAGS) -I$(GTEST_DIR) $(CXXFLAGS) -c \
            $(GTEST_DIR)/src/gtest-all.cc

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

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

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

# Builds a sample test.  A test should link with either gtest.a or
# gtest_main.a, depending on whether it defines its own main()
# function.

sample1.o : $(USER_DIR)/sample1.cc $(USER_DIR)/sample1.h $(GTEST_HEADERS)
    $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(USER_DIR)/sample1.cc

sample1_unittest.o : $(USER_DIR)/sample1_unittest.cc \
                     $(USER_DIR)/sample1.h $(GTEST_HEADERS)
    $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $(USER_DIR)/sample1_unittest.cc

sample1_unittest : sample1.o sample1_unittest.o gtest_main.a
    $(CXX) $(CPPFLAGS) $(CXXFLAGS) -lpthread $^ -o $@

You haven't given us enough information to reproduce your problem , but this may be enough: 您没有给我们足够的信息来重现您的问题 ,但这可能就足够了:

PROJECT_ROOT := ../../..
# or you can use an absolute path

OTHER_DIRS := $(addprefix $(PROJECT_ROOT)/, commons/core commons/backends os/core public/os wsi/comp)

VPATH = $(OTHER_DIRS)
CPPFLAGS += $(addprefix -I, $(OTHER_DIRS))

Now you can construct a new test: 现在您可以构建一个新测试:

something.o : something.cc whatever.h $(GTEST_HEADERS)
    $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $<

something_unittest.o : $(USER_DIR)/something_unittest.cc whatever.h $(GTEST_HEADERS)
    $(CXX) $(CPPFLAGS) $(CXXFLAGS) -c $<

something_unittest : something.o something_unittest.o gtest_main.a
    $(CXX) $(CPPFLAGS) $(CXXFLAGS) -lpthread $^ -o $@

If this doesn't work, we can investigate and adjust. 如果这不起作用,我们可以进行调查和调整。 Further refinements are possible, once this much is working. 一旦如此有效,就可以进一步改进。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何用单独的源和 header 目录编写 Makefile? - How to write a Makefile with separate source and header directories? 如何使用 Makefile 生成来自不同目录的头文件的依赖关系? - How to generate dependencies with header files from different directories using a Makefile? 无法使用Makefile从不同目录中的不同源文件进行编译 - Can't compile with Makefile from different source files in different directories C / C ++ Makefile:如何在.c文件与其他目录中的目标文件之间建立依赖关系? - C/C++ Makefile: How to build dependencies between with .c files and object files in other directories? 如何将所有cpp文件从源目录编译为对象到单独的构建目录 - How to compile all cpp files from source directories to object into a separate build directory 如何为多个目录中的多个文件创建Makefile? - How to create Makefile for multiple files in multiple directories? makefile:如何指定头文件 - makefile: how to specify header files 如何从头声明中找到源代码? - How to find the source code from header declaration? 防止 CMake 为仅可选头文件库生成的 makefile 在仅头文件模式下编译源文件 - Preventing CMake-generated makefile for optional-header-only library from compiling source files in header-only mode 包括来自不同目录的头文件? - including header files from different directories?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM