update README as well
All checks were successful
fsfw/fsfw example hosted/pipeline/head This commit looks good
All checks were successful
fsfw/fsfw example hosted/pipeline/head This commit looks good
This commit is contained in:
parent
37dcc69f3b
commit
7205ac6202
9
.gitignore
vendored
9
.gitignore
vendored
@ -1,8 +1,11 @@
|
|||||||
|
# PyCharm
|
||||||
|
/.idea/*
|
||||||
|
!/.idea/runConfigurations
|
||||||
|
!/.idea/cmake.xml
|
||||||
|
|
||||||
# Python
|
# Python
|
||||||
**/.idea/*
|
|
||||||
!**/.idea/runConfigurations
|
|
||||||
__pycache__
|
__pycache__
|
||||||
venv
|
/venv
|
||||||
|
|
||||||
|
|
||||||
# Eclipse
|
# Eclipse
|
||||||
|
9
.idea/cmake.xml
generated
Normal file
9
.idea/cmake.xml
generated
Normal 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>
|
7
.run/fsfw-example-hosted.run.xml
Normal file
7
.run/fsfw-example-hosted.run.xml
Normal 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>
|
@ -166,8 +166,8 @@ generation as a cross-platform solution.
|
|||||||
|
|
||||||
1. Create a new folder for the executable.
|
1. Create a new folder for the executable.
|
||||||
```sh
|
```sh
|
||||||
mkdir build-Debug
|
mkdir cmake-build-debug
|
||||||
cd build-Debug
|
cd cmake-build-debug
|
||||||
```
|
```
|
||||||
|
|
||||||
2. Configure the build system
|
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
|
1. Open the MinGW64 terminal and navigate to the `fsfw_example` folder
|
||||||
2. Create a new folder for the executable.
|
2. Create a new folder for the executable.
|
||||||
```sh
|
```sh
|
||||||
mkdir build-Debug
|
mkdir cmake-build-debug
|
||||||
cd build-Debug
|
cd cmake-build-debug
|
||||||
```
|
```
|
||||||
|
|
||||||
The build options can be displayed with `cmake -L` .
|
The build options can be displayed with `cmake -L` .
|
||||||
|
@ -17,7 +17,7 @@ fi
|
|||||||
|
|
||||||
build_generator=""
|
build_generator=""
|
||||||
os_fsfw="host"
|
os_fsfw="host"
|
||||||
builddir="build-Debug"
|
builddir="cmake-build-debug"
|
||||||
build_generator="make"
|
build_generator="make"
|
||||||
if [ "${OS}" = "Windows_NT" ]; then
|
if [ "${OS}" = "Windows_NT" ]; then
|
||||||
python="py"
|
python="py"
|
||||||
|
@ -17,7 +17,7 @@ fi
|
|||||||
|
|
||||||
build_generator=""
|
build_generator=""
|
||||||
os_fsfw="host"
|
os_fsfw="host"
|
||||||
builddir="build-Release"
|
builddir="cmake-build-release"
|
||||||
build_generator="make"
|
build_generator="make"
|
||||||
if [ "${OS}" = "Windows_NT" ]; then
|
if [ "${OS}" = "Windows_NT" ]; then
|
||||||
python="py"
|
python="py"
|
||||||
|
@ -17,7 +17,7 @@ fi
|
|||||||
|
|
||||||
build_generator=""
|
build_generator=""
|
||||||
os_fsfw="host"
|
os_fsfw="host"
|
||||||
builddir="build-Debug"
|
builddir="cmake-build-debug"
|
||||||
build_generator="ninja"
|
build_generator="ninja"
|
||||||
if [ "${OS}" = "Windows_NT" ]; then
|
if [ "${OS}" = "Windows_NT" ]; then
|
||||||
python="py"
|
python="py"
|
||||||
|
@ -17,7 +17,7 @@ fi
|
|||||||
|
|
||||||
build_generator=""
|
build_generator=""
|
||||||
os_fsfw="host"
|
os_fsfw="host"
|
||||||
builddir="build-Release"
|
builddir="cmake-build-release"
|
||||||
build_generator="Ninja"
|
build_generator="Ninja"
|
||||||
if [ "${OS}" = "Windows_NT" ]; then
|
if [ "${OS}" = "Windows_NT" ]; then
|
||||||
python="py"
|
python="py"
|
||||||
|
@ -17,7 +17,7 @@ fi
|
|||||||
|
|
||||||
build_generator="make"
|
build_generator="make"
|
||||||
os_fsfw="linux"
|
os_fsfw="linux"
|
||||||
builddir="build-Debug"
|
builddir="cmake-build-debug"
|
||||||
if [ "${OS}" = "Windows_NT" ]; then
|
if [ "${OS}" = "Windows_NT" ]; then
|
||||||
python="py"
|
python="py"
|
||||||
# Could be other OS but this works for now.
|
# Could be other OS but this works for now.
|
||||||
|
@ -17,7 +17,7 @@ fi
|
|||||||
|
|
||||||
build_generator="make"
|
build_generator="make"
|
||||||
os_fsfw="linux"
|
os_fsfw="linux"
|
||||||
builddir="build-Release"
|
builddir="cmake-build-release"
|
||||||
if [ "${OS}" = "Windows_NT" ]; then
|
if [ "${OS}" = "Windows_NT" ]; then
|
||||||
python="py"
|
python="py"
|
||||||
# Could be other OS but this works for now.
|
# Could be other OS but this works for now.
|
||||||
|
@ -17,7 +17,7 @@ fi
|
|||||||
|
|
||||||
build_generator="ninja"
|
build_generator="ninja"
|
||||||
os_fsfw="linux"
|
os_fsfw="linux"
|
||||||
builddir="build-Debug"
|
builddir="cmake-build-debug"
|
||||||
if [ "${OS}" = "Windows_NT" ]; then
|
if [ "${OS}" = "Windows_NT" ]; then
|
||||||
python="py"
|
python="py"
|
||||||
# Could be other OS but this works for now.
|
# Could be other OS but this works for now.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user