Build - Moved all 3rd party stuff to a subdirectory

This commit is contained in:
Emmanuel BENOîT 2017-11-22 08:59:06 +01:00
parent 5027d91782
commit 1225e1b8a7
9 changed files with 18 additions and 16 deletions

10
.gitmodules vendored
View file

@ -1,15 +1,15 @@
[submodule "imgui"]
path = imgui
path = 3rdparty/imgui
url = https://github.com/ocornut/imgui.git
[submodule "glm"]
path = glm
path = 3rdparty/glm
url = https://github.com/g-truc/glm.git
[submodule "ebcl"]
path = ebcl
path = 3rdparty/ebcl
url = ssh://git@git.nocternity.net:44/u/tseeker/libs/corelib
[submodule "font-awesome"]
path = font-awesome
path = 3rdparty/font-awesome
url = https://github.com/FortAwesome/Font-Awesome.git
[submodule "IconFontCppHeaders"]
path = IconFontCppHeaders
path = 3rdparty/icon-font-headers
url = https://github.com/juliettef/IconFontCppHeaders.git

View file

@ -46,10 +46,10 @@ flags = [
'c++',
'-I','.',
'-I','build',
'-I','IconFontCppHeaders',
'-I','imgui',
'-I','glm',
'-I','ebcl/include',
'-I','3rdparty/icon-font-headers',
'-I','3rdparty/imgui',
'-I','3rdparty/glm',
'-I','3rdparty/ebcl/include',
'-I','/usr/include/SDL2' ,
'-D','GLM_ENABLE_EXPERIMENTAL',
]

View file

View file

View file

View file

@ -3,7 +3,9 @@ OUTDIR = build
CXXFLAGS += $(shell sdl2-config --cflags) -std=c++14 -Wall -g
CFLAGS += $(shell sdl2-config --cflags)
CPPFLAGS += -I. -I$(OUTDIR) \
-Iimgui -Iglm -IIconFontCppHeaders -Iebcl/include \
-I3rdparty/imgui -I3rdparty/glm \
-I3rdparty/icon-font-headers \
-I3rdparty/ebcl/include \
-DREAL_BUILD -DGLM_ENABLE_EXPERIMENTAL
LIBS += $(shell sdl2-config --libs) -lGL -lGLEW -ldl \
$(LIBEBCL) -latomic
@ -99,7 +101,7 @@ outdir:
#-------------------------------------------------------------------------------
$(IMGUI_OBJS): $(OUTDIR)/%.o: imgui/%.cpp | outdir
$(IMGUI_OBJS): $(OUTDIR)/%.o: 3rdparty/imgui/%.cpp | outdir
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -o $@ $<
#-------------------------------------------------------------------------------
@ -126,7 +128,7 @@ $(PARSERCHECK_OBJS): $(OUTDIR)/%.o: %.cc $(PCH) | outdir $(FILEDUMPS)
#-------------------------------------------------------------------------------
$(LIBEBCL): ebcl-config
+make -C ebcl CONFIG=../ebcl-config
+make -C 3rdparty/ebcl CONFIG=../../ebcl-config
$(PCH): externals.hh
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c -o $@ $<
@ -135,9 +137,9 @@ $(PCH): externals.hh
$(OUTDIR)/window.o: window.cc $(OUTDIR)/font-awesome.inl
$(OUTDIR)/font-awesome.inl: font-awesome/fonts/fontawesome-webfont.ttf $(OUTDIR)/font-to-c
$(OUTDIR)/font-to-c -base85 font-awesome/fonts/fontawesome-webfont.ttf \
$(OUTDIR)/font-awesome.inl: 3rdparty/font-awesome/fonts/fontawesome-webfont.ttf $(OUTDIR)/font-to-c
$(OUTDIR)/font-to-c -base85 3rdparty/font-awesome/fonts/fontawesome-webfont.ttf \
FontAwesome_ >$@
$(OUTDIR)/font-to-c: imgui/extra_fonts/binary_to_compressed_c.cpp
$(OUTDIR)/font-to-c: 3rdparty/imgui/extra_fonts/binary_to_compressed_c.cpp
$(CXX) -o $@ $<

View file

@ -6,7 +6,7 @@ DEBUG = n
OPTIMIZE = y
BUILD_TESTS = n
OUTDIR = ../build/ebcl
OUTDIR = ../../build/ebcl
export BUILD_STATIC_LIB BUILD_DYNAMIC_LIB DEBUG OPTIMIZE BUILD_TESTS
export OUTDIR