Skip to content

Commit

Permalink
PIO: Only export src when used by projects.
Browse files Browse the repository at this point in the history
  • Loading branch information
nhjschulz committed Feb 20, 2024
1 parent eb865f3 commit f762b58
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 25 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ compile_commands.json
CTestTestfile.cmake
_deps
build/
.vscode/c_cpp_properties.json
Binary file added CFSM-0.1.1.tar.gz
Binary file not shown.
53 changes: 28 additions & 25 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,30 @@
{
"$schema": "https://raw.githubusercontent.com/platformio/platformio-core/develop/platformio/assets/schema/library.json",
"name": "CFSM",
"version": "0.1.1",
"description": "A State Design Pattern Approach for C-Programs",
"keywords": "state design pattern, FSM, C-Language",
"repository":
"$schema": "https://raw.githubusercontent.com/platformio/platformio-core/develop/platformio/assets/schema/library.json",
"name": "CFSM",
"version": "0.1.1",
"description": "A State Design Pattern Approach for C-Programs",
"keywords": "state design pattern, FSM, C-Language",
"repository": {
"type": "git",
"url": "https://github.com/nhjschulz/cfsm.git"
},
"authors": [
{
"type": "git",
"url": "https://github.com/nhjschulz/cfsm.git"
},
"authors":
[
{
"name": "Haju Schulz ",
"email": "[email protected]",
"url": "https://github.com/nhjschulz/cfsm",
"maintainer": true
}
],
"license": "MIT",
"homepage": "https://nhjschulz.github.io/cfsm",
"dependencies": {
},
"frameworks": "*",
"platforms": "*"
}
"name": "Haju Schulz ",
"email": "[email protected]",
"url": "https://github.com/nhjschulz/cfsm",
"maintainer": true
}
],
"license": "MIT",
"homepage": "https://nhjschulz.github.io/cfsm",
"dependencies": {},
"frameworks": "*",
"platforms": "*",
"export": {
"include": [
"src/*.[ch]",
"doc/*.puml"
]
}
}

0 comments on commit f762b58

Please sign in to comment.