I tried building Luxcore based on the instructions in GitHub (WindowsCompile).
I got the following error.
VS 2017 community edition is installed in my computer.
Any help is greatly appreciated

Fix the real problem, don't do additional work to just work around. There must be a reason why for you (and only for you) cmake does't detect VisualC++: https://stackoverflow.com/questions/516 ... ual-studioLuxart wrote: Thu Mar 28, 2019 9:56 am Could you please provide me a batch script just to convert the .cl files in .cpp format, so that i don't need to run the entire build process and don't worry about the above error.
I agree, and the most likely solution is in the link posted by Dade.Dade wrote: Thu Mar 28, 2019 10:17 am Fix the real problem, don't do additional work to just work around. There must be a reason why for you (and only for you) cmake does't detect VisualC++: https://stackoverflow.com/questions/516 ... ual-studio
Code: Select all
cmake-build-x64.bat /cmake-only
Yes, After installing the "Visual C++ tools for CMake" feature, the kernel files are generated and all source files are compiled.acasta69 wrote: Thu Mar 28, 2019 10:27 amI agree, and the most likely solution is in the link posted by Dade.Dade wrote: Thu Mar 28, 2019 10:17 am Fix the real problem, don't do additional work to just work around. There must be a reason why for you (and only for you) cmake does't detect VisualC++: https://stackoverflow.com/questions/516 ... ual-studio
Once that works, the easiest way to generate the files you need is:This will run only the cmake preprocessing, including generation of VS solution and kernel CPP files, without running the actual build.Code: Select all
cmake-build-x64.bat /cmake-only
Do you have a working Python3 with PySide2 also installed?Luxart wrote: Thu Mar 28, 2019 1:19 pm But if the error can be corrected, let me know so that I can correct that too.