update README as well
fsfw/fsfw example hosted/pipeline/head This commit looks good Details

This commit is contained in:
Robin Müller 2022-05-01 20:30:11 +02:00
parent 37dcc69f3b
commit 7205ac6202
11 changed files with 33 additions and 14 deletions

9
.gitignore vendored
View File

@ -1,8 +1,11 @@
# PyCharm
/.idea/*
!/.idea/runConfigurations
!/.idea/cmake.xml
# Python
**/.idea/*
!**/.idea/runConfigurations
__pycache__
venv
/venv
# Eclipse

9
.idea/cmake.xml Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CMakeSharedSettings">
<configurations>
<configuration PROFILE_NAME="Debug" ENABLED="true" CONFIG_NAME="Debug" />
<configuration PROFILE_NAME="Debug Linux" ENABLED="false" GENERATION_DIR="cmake-build-debug" CONFIG_NAME="Debug" GENERATION_OPTIONS="-DFSFW_OSAL=linux" />
</configurations>
</component>
</project>

View File

@ -0,0 +1,7 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="fsfw-example-hosted" type="CMakeRunConfiguration" factoryName="Application" REDIRECT_INPUT="false" ELEVATE="false" USE_EXTERNAL_CONSOLE="false" PASS_PARENT_ENVS_2="true" PROJECT_NAME="fsfw-example-hosted" TARGET_NAME="fsfw-example-hosted" CONFIG_NAME="Debug" RUN_TARGET_PROJECT_NAME="fsfw-example-hosted" RUN_TARGET_NAME="fsfw-example-hosted">
<method v="2">
<option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
</method>
</configuration>
</component>

View File

@ -166,8 +166,8 @@ generation as a cross-platform solution.
1. Create a new folder for the executable.
```sh
mkdir build-Debug
cd build-Debug
mkdir cmake-build-debug
cd cmake-build-debug
```
2. Configure the build system
@ -198,8 +198,8 @@ as well to have a convenient way to configure the CMake build.
1. Open the MinGW64 terminal and navigate to the `fsfw_example` folder
2. Create a new folder for the executable.
```sh
mkdir build-Debug
cd build-Debug
mkdir cmake-build-debug
cd cmake-build-debug
```
The build options can be displayed with `cmake -L` .

View File

@ -17,7 +17,7 @@ fi
build_generator=""
os_fsfw="host"
builddir="build-Debug"
builddir="cmake-build-debug"
build_generator="make"
if [ "${OS}" = "Windows_NT" ]; then
python="py"

View File

@ -17,7 +17,7 @@ fi
build_generator=""
os_fsfw="host"
builddir="build-Release"
builddir="cmake-build-release"
build_generator="make"
if [ "${OS}" = "Windows_NT" ]; then
python="py"

View File

@ -17,7 +17,7 @@ fi
build_generator=""
os_fsfw="host"
builddir="build-Debug"
builddir="cmake-build-debug"
build_generator="ninja"
if [ "${OS}" = "Windows_NT" ]; then
python="py"

View File

@ -17,7 +17,7 @@ fi
build_generator=""
os_fsfw="host"
builddir="build-Release"
builddir="cmake-build-release"
build_generator="Ninja"
if [ "${OS}" = "Windows_NT" ]; then
python="py"

View File

@ -17,7 +17,7 @@ fi
build_generator="make"
os_fsfw="linux"
builddir="build-Debug"
builddir="cmake-build-debug"
if [ "${OS}" = "Windows_NT" ]; then
python="py"
# Could be other OS but this works for now.

View File

@ -17,7 +17,7 @@ fi
build_generator="make"
os_fsfw="linux"
builddir="build-Release"
builddir="cmake-build-release"
if [ "${OS}" = "Windows_NT" ]; then
python="py"
# Could be other OS but this works for now.

View File

@ -17,7 +17,7 @@ fi
build_generator="ninja"
os_fsfw="linux"
builddir="build-Debug"
builddir="cmake-build-debug"
if [ "${OS}" = "Windows_NT" ]; then
python="py"
# Could be other OS but this works for now.