ManifoldPlus icon indicating copy to clipboard operation
ManifoldPlus copied to clipboard

Unable to build make -j8, what to do?

Open PongpreechaSuea opened this issue 2 years ago • 1 comments

I encountered this kind of problem How do I fix it?

Error : 
        C:\Users\Desktop\ManifoldPlus>mkdir build
        
        C:\Users\Desktop\ManifoldPlus>cd build
        
        C:\Users\Desktop\ManifoldPlus\build>cmake .. -DCMAKE_BUILD_TYPE=Release
        -- Building for: Visual Studio 17 2022
        -- Selecting Windows SDK version 10.0.22000.0 to target Windows 10.0.19045.
        -- The C compiler identification is MSVC 19.35.32217.1
        -- The CXX compiler identification is MSVC 19.35.32217.1
        -- Detecting C compiler ABI info
        -- Detecting C compiler ABI info - done
        -- Check for working C compiler: C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.35.32215/bin/Hostx64/x64/cl.exe - skipped
        -- Detecting C compile features
        -- Detecting C compile features - done
        -- Detecting CXX compiler ABI info
        -- Detecting CXX compiler ABI info - done
        -- Check for working CXX compiler: C:/Program Files/Microsoft Visual Studio/2022/Community/VC/Tools/MSVC/14.35.32215/bin/Hostx64/x64/cl.exe - skipped
        -- Detecting CXX compile features
        -- Detecting CXX compile features - done
        -- Configuring done (6.5s)
        -- Generating done (0.0s)
        CMake Warning:
          Manually-specified variables were not used by the project:
        
            CMAKE_BUILD_TYPE
        
        
        -- Build files have been written to: C:/Users/Suae/Desktop/Metavaese/ManifoldPlus/build
        
        C:\Users\Desktop\ManifoldPlus\build>make -j8
        make: *** No targets specified and no makefile found.  Stop.

Who can fix the fever please help me

PongpreechaSuea avatar May 16 '23 13:05 PongpreechaSuea

I've solved this problem. Use commands below in Windows to compile:

mkdir build
cd build
cmake -G "MinGW Makefiles" ..
mingw32-make
cd ..
mkdir results

tElephan avatar Jul 10 '24 09:07 tElephan