Hi, looks like there is a big confusion here. Please answer this very big question first before anything else: *are you really sure to need ALL these modules*? That's hugely unlikely.
Even if so, you need to make one step at a time: so please follow this procedure to compile the core library and Irrlicht: https://api.projectchrono.org/development/tutorial_install_chrono.html If you succeed in this then we can add more modules later on. If you want to use some build script I would recommend to try with something easier for now. But I don't want to make you any confusion: please stick with the installation guid for now if you don't feel confident. set SOURCE_DIR="C:/Source/chrono" set BUILD_DIR="C:/Build/chrono" set INSTALL_DIR="C:/Install/chrono" @rem ------------------------------------------- set EIGEN3_INSTALL_DIR="C:/Packages/eigen" set IRRLICHT_INSTALL_DIR="C:/Packages/irrlicht" @rem ------------------------------------------- set BUILDSYSTEM="Visual Studio 17 2022" rem ------------------------------------------------------------------------ cmake -G %BUILDSYSTEM% -B %BUILD_DIR% -S %SOURCE_DIR% ^ -DCMAKE_INSTALL_PREFIX:PATH=%INSTALL_DIR% ^ -DENABLE_MODULE_PARSERS:BOOL=OFF ^ -DENABLE_MODULE_IRRLICHT:BOOL=ON ^ -DENABLE_MODULE_VSG:BOOL=OFF ^ -DENABLE_MODULE_OPENGL:BOOL=OFF ^ -DENABLE_MODULE_VEHICLE:BOOL=OFF ^ -DENABLE_MODULE_POSTPROCESS:BOOL=OFF ^ -DENABLE_MODULE_MULTICORE:BOOL=OFF ^ -DENABLE_MODULE_FSI:BOOL=OFF ^ -DENABLE_MODULE_GPU:BOOL=OFF ^ -DENABLE_MODULE_DISTRIBUTED:BOOL=OFF ^ -DENABLE_MODULE_PARDISO_MKL:BOOL=OFF ^ -DENABLE_MODULE_CASCADE:BOOL=OFF ^ -DENABLE_MODULE_COSIMULATION:BOOL=OFF ^ -DENABLE_MODULE_SENSOR:BOOL=OFF ^ -DENABLE_MODULE_MODAL:BOOL=OFF ^ -DENABLE_MODULE_MATLAB:BOOL=OFF ^ -DENABLE_MODULE_CSHARP:BOOL=OFF ^ -DENABLE_MODULE_PYTHON:BOOL=OFF ^ -DENABLE_MODULE_SYNCHRONO:BOOL=OFF ^ -DBUILD_BENCHMARKING:BOOL=OFF ^ -DBUILD_TESTING:BOOL=OFF ^ -DENABLE_OPENCRG:BOOL=OFF ^ -DUSE_CUDA_NVRTC:BOOL=OFF ^ -DUSE_FAST_DDS:BOOL=OFF ^ -DEIGEN3_INCLUDE_DIR:PATH=%EIGEN3_INSTALL_DIR% ^ -DIRRLICHT_INSTALL_DIR:PATH=%IRRLICHT_INSTALL_DIR% -- You received this message because you are subscribed to the Google Groups "ProjectChrono" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/projectchrono/9ebce1f1-4504-41b2-a6af-aa30c94bece5n%40googlegroups.com.
