cmake: Preserve include directory order (fixes #6959)

pull/6966/head
Daniel Mensinger 5 years ago committed by Jussi Pakkanen
parent 14d7d25115
commit fa1bb2a676
  1. 22
      mesonbuild/cmake/interpreter.py
  2. 10
      test cases/cmake/17 include path order/main.cpp
  3. 9
      test cases/cmake/17 include path order/meson.build
  4. 34
      test cases/cmake/17 include path order/subprojects/cmMod/CMakeLists.txt
  5. 11
      test cases/cmake/17 include path order/subprojects/cmMod/cmMod.cpp
  6. 4
      test cases/cmake/17 include path order/subprojects/cmMod/incA/cmMod.hpp
  7. 4
      test cases/cmake/17 include path order/subprojects/cmMod/incB/cmMod.hpp
  8. 4
      test cases/cmake/17 include path order/subprojects/cmMod/incC/cmMod.hpp
  9. 4
      test cases/cmake/17 include path order/subprojects/cmMod/incD/cmMod.hpp
  10. 4
      test cases/cmake/17 include path order/subprojects/cmMod/incE/cmMod.hpp
  11. 4
      test cases/cmake/17 include path order/subprojects/cmMod/incF/cmMod.hpp
  12. 14
      test cases/cmake/17 include path order/subprojects/cmMod/incG/cmMod.hpp
  13. 4
      test cases/cmake/17 include path order/subprojects/cmMod/incH/cmMod.hpp
  14. 4
      test cases/cmake/17 include path order/subprojects/cmMod/incI/cmMod.hpp
  15. 4
      test cases/cmake/17 include path order/subprojects/cmMod/incJ/cmMod.hpp
  16. 4
      test cases/cmake/17 include path order/subprojects/cmMod/incL/cmMod.hpp
  17. 4
      test cases/cmake/17 include path order/subprojects/cmMod/incM/cmMod.hpp
  18. 4
      test cases/cmake/17 include path order/subprojects/cmMod/incN/cmMod.hpp
  19. 4
      test cases/cmake/17 include path order/subprojects/cmMod/incO/cmMod.hpp
  20. 4
      test cases/cmake/17 include path order/subprojects/cmMod/incP/cmMod.hpp

@ -22,7 +22,7 @@ from .executor import CMakeExecutor
from .traceparser import CMakeTraceParser, CMakeGeneratorTarget
from .. import mlog
from ..environment import Environment
from ..mesonlib import MachineChoice, version_compare
from ..mesonlib import MachineChoice, OrderedSet, version_compare
from ..compilers.compilers import lang_suffixes, header_suffixes, obj_suffixes, lib_suffixes, is_header
from enum import Enum
from functools import lru_cache
@ -441,8 +441,8 @@ class ConverterTarget:
return x
build_dir_rel = os.path.relpath(self.build_dir, os.path.join(self.env.get_build_dir(), subdir))
self.includes = list(set([rel_path(x, True, False) for x in set(self.includes)] + [build_dir_rel]))
self.sys_includes = list(set([rel_path(x, True, False) for x in set(self.sys_includes)]))
self.includes = list(OrderedSet([rel_path(x, True, False) for x in OrderedSet(self.includes)] + [build_dir_rel]))
self.sys_includes = list(OrderedSet([rel_path(x, True, False) for x in OrderedSet(self.sys_includes)]))
self.sources = [rel_path(x, False, False) for x in self.sources]
self.generated = [rel_path(x, False, True) for x in self.generated]
@ -507,7 +507,7 @@ class ConverterTarget:
self._append_objlib_sources(i)
else:
self.includes += i.includes
self.includes = list(set(self.includes))
self.includes = list(OrderedSet(self.includes))
self.object_libs += [i]
break
@ -518,9 +518,9 @@ class ConverterTarget:
self.includes += tgt.includes
self.sources += tgt.sources
self.generated += tgt.generated
self.sources = list(set(self.sources))
self.generated = list(set(self.generated))
self.includes = list(set(self.includes))
self.sources = list(OrderedSet(self.sources))
self.generated = list(OrderedSet(self.generated))
self.includes = list(OrderedSet(self.includes))
# Inherit compiler arguments since they may be required for building
for lang, opts in tgt.compile_opts.items():
@ -546,7 +546,7 @@ class ConverterTarget:
to_process += [x for x in i.depends if x not in processed]
else:
new_deps += [i]
self.depends = list(set(new_deps))
self.depends = list(OrderedSet(new_deps))
def cleanup_dependencies(self):
# Clear the dependencies from targets that where moved from
@ -720,7 +720,7 @@ class ConverterCustomTarget:
to_process += [x for x in i.depends if x not in processed]
else:
new_deps += [i]
self.depends = list(set(new_deps))
self.depends = list(OrderedSet(new_deps))
def get_ref(self, fname: str) -> T.Optional[CustomTargetReference]:
fname = os.path.basename(fname)
@ -863,7 +863,7 @@ class CMakeInterpreter:
cmake_files = self.fileapi.get_cmake_sources()
self.bs_files = [x.file for x in cmake_files if not x.is_cmake and not x.is_temp]
self.bs_files = [os.path.relpath(x, self.env.get_source_dir()) for x in self.bs_files]
self.bs_files = list(set(self.bs_files))
self.bs_files = list(OrderedSet(self.bs_files))
# Load the codemodel configurations
self.codemodel_configs = self.fileapi.get_cmake_configurations()
@ -888,7 +888,7 @@ class CMakeInterpreter:
src_dir = bs_reply.src_dir
self.bs_files = [x.file for x in bs_reply.build_files if not x.is_cmake and not x.is_temp]
self.bs_files = [os.path.relpath(os.path.join(src_dir, x), self.env.get_source_dir()) for x in self.bs_files]
self.bs_files = list(set(self.bs_files))
self.bs_files = list(OrderedSet(self.bs_files))
self.codemodel_configs = cm_reply.configs
def analyse(self) -> None:

@ -0,0 +1,10 @@
#include <iostream>
#include <cmMod.hpp>
using namespace std;
int main(void) {
cmModClass obj("Hello");
cout << obj.getStr() << endl;
return 0;
}

@ -0,0 +1,9 @@
project('include_path_order', ['c', 'cpp'])
cm = import('cmake')
sub_pro = cm.subproject('cmMod')
sub_dep = sub_pro.dependency('cmModLib++')
exe1 = executable('main', ['main.cpp'], dependencies: [sub_dep])
test('test1', exe1)

@ -0,0 +1,34 @@
cmake_minimum_required(VERSION 3.5)
project(cmMod)
set (CMAKE_CXX_STANDARD 14)
include_directories(
${CMAKE_CURRENT_BINARY_DIR}
# The one and only correct include dir
${CMAKE_CURRENT_SOURCE_DIR}/incG
# All of these are traps
${CMAKE_CURRENT_SOURCE_DIR}/incL
${CMAKE_CURRENT_SOURCE_DIR}/incM
${CMAKE_CURRENT_SOURCE_DIR}/incO
${CMAKE_CURRENT_SOURCE_DIR}/incF
${CMAKE_CURRENT_SOURCE_DIR}/incI
${CMAKE_CURRENT_SOURCE_DIR}/incE
${CMAKE_CURRENT_SOURCE_DIR}/incD
${CMAKE_CURRENT_SOURCE_DIR}/incH
${CMAKE_CURRENT_SOURCE_DIR}/incN
${CMAKE_CURRENT_SOURCE_DIR}/incA
${CMAKE_CURRENT_SOURCE_DIR}/incB
${CMAKE_CURRENT_SOURCE_DIR}/incJ
${CMAKE_CURRENT_SOURCE_DIR}/incP
${CMAKE_CURRENT_SOURCE_DIR}/incC
${CMAKE_CURRENT_SOURCE_DIR}/incK
)
add_definitions("-DDO_NOTHING_JUST_A_FLAG=1")
add_library(cmModLib++ SHARED cmMod.cpp)
include(GenerateExportHeader)
generate_export_header(cmModLib++)

@ -0,0 +1,11 @@
#include "cmMod.hpp"
using namespace std;
cmModClass::cmModClass(string foo) {
str = foo + " World";
}
string cmModClass::getStr() const {
return str;
}

@ -0,0 +1,4 @@
// cmMod.hpp (A)
#pragma once
#error "cmMod.hpp in incA must not be included"

@ -0,0 +1,4 @@
// cmMod.hpp (B)
#pragma once
#error "cmMod.hpp in incB must not be included"

@ -0,0 +1,4 @@
// cmMod.hpp (C)
#pragma once
#error "cmMod.hpp in incC must not be included"

@ -0,0 +1,4 @@
// cmMod.hpp (D)
#pragma once
#error "cmMod.hpp in incD must not be included"

@ -0,0 +1,4 @@
// cmMod.hpp (E)
#pragma once
#error "cmMod.hpp in incE must not be included"

@ -0,0 +1,4 @@
// cmMod.hpp (F)
#pragma once
#error "cmMod.hpp in incF must not be included"

@ -0,0 +1,14 @@
#pragma once
#include "cmmodlib++_export.h"
#include <string>
class CMMODLIB___EXPORT cmModClass {
private:
std::string str;
public:
cmModClass(std::string foo);
std::string getStr() const;
};

@ -0,0 +1,4 @@
// cmMod.hpp (H)
#pragma once
#error "cmMod.hpp in incH must not be included"

@ -0,0 +1,4 @@
// cmMod.hpp (I)
#pragma once
#error "cmMod.hpp in incI must not be included"

@ -0,0 +1,4 @@
// cmMod.hpp (J)
#pragma once
#error "cmMod.hpp in incJ must not be included"

@ -0,0 +1,4 @@
// cmMod.hpp (L)
#pragma once
#error "cmMod.hpp in incL must not be included"

@ -0,0 +1,4 @@
// cmMod.hpp (M)
#pragma once
#error "cmMod.hpp in incM must not be included"

@ -0,0 +1,4 @@
// cmMod.hpp (N)
#pragma once
#error "cmMod.hpp in incN must not be included"

@ -0,0 +1,4 @@
// cmMod.hpp (O)
#pragma once
#error "cmMod.hpp in incO must not be included"

@ -0,0 +1,4 @@
// cmMod.hpp (P)
#pragma once
#error "cmMod.hpp in incP must not be included"
Loading…
Cancel
Save