This website works better with JavaScript.
Home
Explore
Help
Sign In
Archivist
/
raylib-src
mirror of
https://github.com/raysan5/raylib
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
24
Wiki
Activity
remove main from target_link_libraries, since we dont want to link a library called main with my_project
master
Andreas Stallinger
5 years ago
parent
f3830d9f0d
commit
bb37af968c
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
Working-with-CMake.md
+ 1
- 1
Working-with-CMake.md
@ -10,7 +10,7 @@ set(CMAKE_C_STANDARD 11)
add_executable(my_project main.c)
target_link_libraries(my_project
main
raylib)
target_link_libraries(my_project raylib)
```
To build, use these commands:
```cmake
Write
Preview
Loading…
Cancel
Save