Skip to content

Commit 3b4b194

Browse files
authored
Merge pull request #18 from OpenVicProject/fix/build-pollution
Move common_compiler_flags to isolated build path
2 parents 5abbb9c + 9f9b640 commit 3b4b194

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

tools/linux.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Based on https://github.com/godotengine/godot-cpp/blob/98ea2f60bb3846d6ae410d8936137d1b099cd50b/tools/linux.py
2-
import common_compiler_flags
2+
from build import common_compiler_flags
33
from SCons.Variables import BoolVariable
44
from SCons.Tool import clang, clangxx
55

tools/macos.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33
import sys
44

5-
import common_compiler_flags
5+
from build import common_compiler_flags
66
from SCons.Variables import BoolVariable
77

88

tools/windows.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import os
33
import sys
44

5-
import common_compiler_flags
5+
from build import common_compiler_flags
66
import my_spawn
77
from SCons.Tool import mingw, msvc
88
from SCons.Variables import BoolVariable

0 commit comments

Comments
 (0)