ClothSimulation icon indicating copy to clipboard operation
ClothSimulation copied to clipboard

Where is the build directory?

Open rhyancm opened this issue 3 years ago • 1 comments

Where is the build directory? I am not locating to add in cmake

rhyancm avatar Mar 08 '23 15:03 rhyancm

  • hey, just do this for linux and mac
touch install.sh
  • then copy this into install.sh
#!/bin/sh -e

mkdir -p build && cd build
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release ..
make
  • then to give permission to the bash file
chmod +x install.sh
  • make sure to install SFML for linux and mac
  • for mac
brew install sfml
  • then
./install.sh
  • a binary would be created in the build folder, just run the binary

Tofunmi1 avatar Mar 11 '23 03:03 Tofunmi1