-
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 pull request #4 from navrocky/feature/pipe-syntax-and-shell
Add pipe syntax, add shell, trim, toBool functions
- Loading branch information
Showing
24 changed files
with
3,718 additions
and
156 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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
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
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 |
---|---|---|
@@ -1,6 +1,8 @@ | ||
[requires] | ||
args-parser/6.3.3 | ||
inja/3.4.0 | ||
nlohmann_json/3.11.3 | ||
catch2/3.7.1 | ||
|
||
[generators] | ||
CMakeDeps | ||
|
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,27 @@ | ||
set(TARGET muenvsubst-lib) | ||
|
||
# find_package(inja REQUIRED) | ||
find_package(nlohmann_json REQUIRED) | ||
|
||
include_directories(${CMAKE_SOURCE_DIR}/3rdparty) | ||
|
||
set(SOURCES | ||
funcs/other.cpp | ||
funcs/other.h | ||
funcs/shell.cpp | ||
funcs/shell.h | ||
inja_renderer.cpp | ||
inja_renderer.h | ||
process_executor.cpp | ||
process_executor.h | ||
tools.cpp | ||
tools.h | ||
) | ||
|
||
add_library(${TARGET} ${SOURCES} | ||
funcs/string.h funcs/string.cpp) | ||
|
||
target_link_libraries(${TARGET} | ||
nlohmann_json::nlohmann_json | ||
# pantor::inja | ||
) |
Oops, something went wrong.