Skip to content

Commit

Permalink
Merge branch 'develop' into feature/VSbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalPrincNXP authored Mar 7, 2023
2 parents 90f4b3e + 8f77dad commit 763ee5b
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
1 change: 0 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ jobs:
- run: powershell.exe "& 'C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\MSBuild.exe' .\erpcgen\VisualStudio_v14\erpcgen.sln /property:Configuration=Release"
- store_artifacts:
path: ./erpcgen/VisualStudio_v14/Release/erpcgen.exe

workflows:
build-workflow:
jobs:
Expand Down
4 changes: 4 additions & 0 deletions erpcgen/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,10 @@ ifeq "$(build)" "release"
endif
endif

ifeq "$(is_mingw)" "1"
CXXFLAGS += -DBOOST_FILESYSTEM_VERSION=4
endif

# Run flex
$(OBJS_ROOT)/erpcgen_lexer.cpp: $(ERPC_ROOT)/erpcgen/src/erpcgen_lexer.l $(OBJS_ROOT)/erpcgen_parser.tab.hpp | $(OBJECTS_DIRS)
@$(call printmessage,orange,Generating, $(subst $(ERPC_ROOT)/,,$<))
Expand Down
8 changes: 8 additions & 0 deletions erpcgen/src/Utils.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/* Copyright 2023 NXP
* Copyright 2023 ACRIOS Systems s.r.o.
* All rights reserved.
*
*
* SPDX-License-Identifier: BSD-3-Clause
*/

#include "Utils.hpp"

void erpcgen::replaceAll(std::string &str, const std::string &from, const std::string &to)
Expand Down

0 comments on commit 763ee5b

Please sign in to comment.