10-20-2023, 09:31 AM
Hi guys,
I'm trying to build Infinitime project on my windows machine but with no success. I have been following the steps in:
https://github.com/InfiniTimeOrg/InfiniT...Program.md
I'm stuck in the last step, the make command.
Cmake command:
Which results in adding the following files inside build folder
Then I enter the build folder and I try to use make command as described in the above link
It doesn't work, it says:
"make: *** No rule to make target 'pinetime-app'. Stop."
I also tried make -j4, but similar issue.
Any hints and guidance would be greatly appreciated.
Thanks
I'm trying to build Infinitime project on my windows machine but with no success. I have been following the steps in:
https://github.com/InfiniTimeOrg/InfiniT...Program.md
I'm stuck in the last step, the make command.
Cmake command:
Code:
Cmake -DARM_NONE_EABI_TOOLCHAIN_PATH="C:/Program Files (x86)/GNU Arm Embedded Toolchain/10 2021.10" -DNRF5_SDK_PATH="C:/Users/blackdev/pinetime/nRF5_SDK_15.3.0_59ac345" -DCMAKE_BUILD_TYPE=Debug -DBUILD_DFU=1 -DBUILD_RESOURCES=1 -DTARGET_DEVICE=PINETIME -S . -B build
Which results in adding the following files inside build folder
Code:
├───CMakeFiles
│ ├───3.28.0-rc2
│ │ ├───CompilerIdASM
│ │ ├───CompilerIdC
│ │ │ ├───Debug
│ │ │ │ └───CompilerIdC.tlog
│ │ │ └───tmp
│ │ ├───CompilerIdCXX
│ │ │ ├───Debug
│ │ │ │ └───CompilerIdCXX.tlog
│ │ │ └───tmp
│ │ └───x64
│ │ └───Debug
│ │ └───VCTargetsPath.tlog
│ ├───58e9d56eaa4cb413b76d7d838cbc8fb1
│ ├───74be971449aa6aebb611e3cfdd9dd126
│ ├───83f795d81ab7de042a55dc014fe330ec
│ ├───CMakeScratch
│ └───pkgRedirects
└───src
├───CMakeFiles
└───displayapp
└───fonts
└───CMakeFiles
Then I enter the build folder and I try to use make command as described in the above link
Code:
make -j4 pinetime-app
It doesn't work, it says:
"make: *** No rule to make target 'pinetime-app'. Stop."
I also tried make -j4, but similar issue.
Any hints and guidance would be greatly appreciated.
Thanks