-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:stergiotis/imzero_client_cpp
- Loading branch information
Showing
8 changed files
with
72 additions
and
33 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
set -ev | ||
here=$(dirname "$(readlink -f "$BASH_SOURCE")") | ||
cd "$here" | ||
|
||
source /etc/os-release | ||
|
||
#../scripts/install.sh | ||
#../scripts/install_nonportable.sh | ||
./build_flatbuffers.sh | ||
./build.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
here=$(dirname "$(readlink -f "$BASH_SOURCE")") | ||
set -ev | ||
cd ../../contrib/flatbuffers | ||
cmake -G "Unix Makefiles" | ||
make -j |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env -S dhall text --output CMakeLists.txt --file | ||
let prelude = ../dhall/prelude.dhall | ||
let lib = ../dhall/lib.dhall | ||
let cmake = ../dhall/cmakelists.dhall | ||
let sourceTreePartsRepo = ../dhall/sourceTreeParts.dhall | ||
let common = ./common.dhall | ||
in | ||
cmake.cmakelistsToText cmake.cmakelists::{ | ||
, cxx = common.cxx | ||
, exe = "imgui_exe" | ||
, projectName = "imgui_exe" | ||
, cxxflags = ["-std=c++${Natural/show common.cppstd}" ] # common.cxxflags # common.stdlibFlags | ||
, ldflags = common.ldflags # common.stdlibFlags | ||
, sourceTreeParts = common.sourceTreeParts | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters