diff --git a/.gitignore b/.gitignore index 7098f77..a6c39de 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ compile_commands.json CTestTestfile.cmake _deps build/ +.vscode/c_cpp_properties.json diff --git a/CFSM-0.1.1.tar.gz b/CFSM-0.1.1.tar.gz new file mode 100644 index 0000000..d903193 Binary files /dev/null and b/CFSM-0.1.1.tar.gz differ diff --git a/library.json b/library.json index 98739d2..541f294 100644 --- a/library.json +++ b/library.json @@ -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": "haju@schulznorbert.de", - "url": "https://github.com/nhjschulz/cfsm", - "maintainer": true - } - ], - "license": "MIT", - "homepage": "https://nhjschulz.github.io/cfsm", - "dependencies": { - }, - "frameworks": "*", - "platforms": "*" - } \ No newline at end of file + "name": "Haju Schulz ", + "email": "haju@schulznorbert.de", + "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" + ] + } +} \ No newline at end of file