Other Way to build OpenVINO from source other than Cmake ? #22145
-
I've been trying to build openvino from source using cmake but due to specification issues, my machine keeps restarting. Are there any other alternatives like makefile or ninja commands to build from source? Any input would be appreciated ! |
Beta Was this translation helpful? Give feedback.
Answered by
ilya-lavrenov
Jan 15, 2024
Replies: 1 comment
-
Cmake is a cross platform tool to generate build recipes for different build systems. cmake -G Ninja -S <source dir> -B <build dir> |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
andrei-kochin
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cmake is a cross platform tool to generate build recipes for different build systems.
You can pass
-G
argument to cmake to generate a project for any supported build system. To generate project for Ninja, please use: