summaryrefslogtreecommitdiff
path: root/examples/imx7_colibri_m4/driver_examples/flexcan/flexcan_network/armgcc/build_all.bat
diff options
context:
space:
mode:
authorRaul Munoz <raul.munoz@toradex.com>2017-05-19 15:06:14 -0300
committerStefan Agner <stefan.agner@toradex.com>2017-05-22 17:09:55 -0700
commita19b6afb6789a8f397b8484deccb51b94b54455e (patch)
tree34eb88e608d654dbffc600cb0a258401821d931c /examples/imx7_colibri_m4/driver_examples/flexcan/flexcan_network/armgcc/build_all.bat
parent7864c4b9e57a844807fa6f53dee509eb6d8ae389 (diff)
examples: flexcan_network: update CMake structure
Updating this CMake struct according hello_world example. Using this new struct we can build debug and release configuration at the same time and use Eclipse. Signed-off-by: Raul Munoz <raul.munoz@toradex.com> Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
Diffstat (limited to 'examples/imx7_colibri_m4/driver_examples/flexcan/flexcan_network/armgcc/build_all.bat')
-rw-r--r--examples/imx7_colibri_m4/driver_examples/flexcan/flexcan_network/armgcc/build_all.bat10
1 files changed, 6 insertions, 4 deletions
diff --git a/examples/imx7_colibri_m4/driver_examples/flexcan/flexcan_network/armgcc/build_all.bat b/examples/imx7_colibri_m4/driver_examples/flexcan/flexcan_network/armgcc/build_all.bat
index 0cf721f..426a29f 100644
--- a/examples/imx7_colibri_m4/driver_examples/flexcan/flexcan_network/armgcc/build_all.bat
+++ b/examples/imx7_colibri_m4/driver_examples/flexcan/flexcan_network/armgcc/build_all.bat
@@ -1,5 +1,7 @@
-cmake -DCMAKE_TOOLCHAIN_FILE="../../../../../../tools/cmake_toolchain_files/armgcc.cmake" -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug .
-mingw32-make -j4
-cmake -DCMAKE_TOOLCHAIN_FILE="../../../../../../tools/cmake_toolchain_files/armgcc.cmake" -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release .
-mingw32-make -j4
+cd release
+call build_release.bat
+cd ..
+cd debug
+call build_debug.bat
+cd ..
pause