You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Install googletest
git clone https://github.com/google/googletest
cd googletest
mkdir build
cd build
cmake .. -DCMAKE_CXX_STANDARD=17
make
make install
Change makefiles. Can we add/remove flags depending on the OS? Add these for Mac but not for Linux?
So far, here are steps we might need to do to support Mac
git clone https://github.com/google/googletest
cd googletest
mkdir build
cd build
cmake .. -DCMAKE_CXX_STANDARD=17
make
make install
-lm -I/opt/X11/include -lpthread -lX11 -lstdc++ -I/usr/X11R6/include -L/usr/X11R6/lib
-lm -lpthread -lX11 -I/usr/X11R6/include -L/usr/X11R6/lib
The text was updated successfully, but these errors were encountered: