Skip to content

Commit

Permalink
Merge pull request #27 from Unreal-Dan/daniel/restructure
Browse files Browse the repository at this point in the history
Daniel/restructure
  • Loading branch information
Unreal-Dan authored Jan 20, 2024
2 parents dd80a4b + f45aac3 commit f26b7c8
Show file tree
Hide file tree
Showing 35 changed files with 8 additions and 385 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@ jobs:
python-version: '3.x'
- name: Install Dependencies
run: make install
working-directory: HeliosEmbedded
- name: Build Binary
run: make build
working-directory: HeliosEmbedded
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions HeliosCLI/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ DEFINES=\

# compiler include paths
INCLUDES=\
-I ../ \
-I ../Helios \

# only set them if they're not empty to prevent unnecessary whitespace
ifneq ($(DEFINES),)
Expand Down Expand Up @@ -48,9 +48,9 @@ LIBS=\
# source files
# local source files first, other sources after
ifeq ($(OS),Windows_NT)
SRC = $(shell find ../ -type f -name \\*.cpp)
SRC = $(shell find ../Helios -type f -name \\*.cpp) cli_main.cpp
else
SRC = $(shell find ../ -type f -name '*.cpp')
SRC = $(shell find ../Helios -type f -name '*.cpp') cli_main.cpp
endif

# object files are source files with .c replaced with .o
Expand Down
6 changes: 3 additions & 3 deletions Makefile → HeliosEmbedded/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -88,17 +88,17 @@ endif

INCLUDES=\
-I $(INCLUDE_DIR) \
-I ./
-I ../Helios

CFLAGS+=$(INCLUDES)

# Source files
ifeq ($(OS),Windows_NT) # Windows
SRCS = \
$(shell find . -maxdepth 1 -type f -name '\*.cpp')
$(shell find ../Helios -maxdepth 1 -type f -name '\*.cpp') main.cpp
else # linux
SRCS = \
$(shell find . -maxdepth 1 -type f -name \*.cpp)
$(shell find ../Helios -maxdepth 1 -type f -name \*.cpp) main.cpp
endif

OBJS = $(SRCS:.cpp=.o)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
22 changes: 0 additions & 22 deletions HeliosVortex.atsln

This file was deleted.

86 changes: 0 additions & 86 deletions HeliosVortex.componentinfo.xml

This file was deleted.

Loading

0 comments on commit f26b7c8

Please sign in to comment.