diff options
author | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-12-24 14:22:49 -0700 |
---|---|---|
committer | nathansmithsmith <thenathansmithsmith@gmail.com> | 2023-12-24 14:22:49 -0700 |
commit | 3a9a5a04447b8b5dc2cc3860a8faa56ecbdbac50 (patch) | |
tree | 81876397fca3587448f2d829ad6db7e273c5699c | |
parent | 26b988fa9192b6465173c5fc1bb8b05896eb53c7 (diff) |
Changed cmake a bitrelease1.0
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index e85c450..4215b82 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,10 +28,8 @@ if (${PLATFORM} MATCHES "Web") set_target_properties(${PROJECT_NAME} PROPERTIES LINK_FLAGS "--preload-file assets.rres") endif() -set(RAYLIB_LIB raylib) - target_include_directories(${PROJECT_NAME} PUBLIC include src) -target_link_libraries(${PROJECT_NAME} ${RAYLIB_LIB} m) +target_link_libraries(${PROJECT_NAME} raylib m) if (WIN32) target_link_libraries(${PROJECT_NAME} opengl32 gdi32 winmm) |