summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 2cee1b6b..aba877e7 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -208,16 +208,10 @@ if(SHARED)
if (${PLATFORM} MATCHES "Desktop")
target_link_libraries(raylib glfw)
endif()
- if (UNIX AND ${FILESYSTEM_LACKS_SYMLINKS})
- MESSAGE(WARNING "Can't version UNIX shared library on file system without symlink support")
- else()
- set_target_properties(raylib PROPERTIES
- VERSION ${PROJECT_VERSION}
- SOVERSION ${API_VERSION}
- )
- endif()
set_target_properties(raylib PROPERTIES
PUBLIC_HEADER "raylib.h"
+ VERSION ${PROJECT_VERSION}
+ SOVERSION ${API_VERSION}
)
if (WIN32)