-
Notifications
You must be signed in to change notification settings - Fork 226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Windows CMake instructions #57
Comments
By default, |
but it from your example: Readme: cd hello_world/hello_library |
@domesticmouse By passing <-G "Unix Makefiles"> flag with cmake command, we can generate appropriate makefiles for "make" command, but using it in this way, the path of generated dynamic library will be "..\hello_library\libhello.dll" instead of "..\hello_library\Debug\hello.dll" as expected by the code. So, either we can change path in code or use visual studio to build sln file. However, the documentation for windows must be update in either case. |
Running make in windows is not so trivial as in Linux. Here are the steps:
You should find 4 files including |
Hello! I'm trying to do what the READ.ME explains but it is not working. Somebody can help-me? I just copy the project called "Hello World", my code is exactly the same. |
Also this one @cbracken. |
Hi,
I try to run the example as is and after running cmake command running the command make and getting error:
make: *** No targets specified and no makefile found
The text was updated successfully, but these errors were encountered: