erwincoumans / tiny-differentiable-simulator

Tiny Differentiable Simulator is a header-only C++ and CUDA physics library for reinforcement learning and robotics with zero dependencies.
Apache License 2.0
1.2k stars 129 forks source link

Fail to make #16

Closed Cospui closed 4 years ago

Cospui commented 4 years ago

By following the instructions in the "Getting Started" part, I got the following error when running make -j (after mkdir build,cd build, cmake ..):

make *** no targets specified and no makefile found. stop

So how can I solve this? Thanks!

erwincoumans commented 4 years ago

It works fine on all platforms for me (WIndows, Linux, Mac OSX). More details needed, what OS + version, what version of cmake etc.

erwincoumans commented 4 years ago

Can't reproduce.

gonultasbu commented 2 years ago

Mentioned problem can be solved by modifying the cmake command as follows:

cmake -G "Unix Makefiles" ..