Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
2e627031
Commit
2e627031
authored
Dec 05, 2009
by
Vladislav Vaintroub
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
set version and soversionn for client shared library
parent
92642d06
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
libmysql/CMakeLists.txt
libmysql/CMakeLists.txt
+5
-1
No files found.
libmysql/CMakeLists.txt
View file @
2e627031
...
@@ -163,7 +163,11 @@ IF(NOT DISABLE_SHARED)
...
@@ -163,7 +163,11 @@ IF(NOT DISABLE_SHARED)
MERGE_LIBRARIES
(
libmysql SHARED
${
LIBS
}
EXPORTS
${
CLIENT_API_FUNCTIONS
}
)
MERGE_LIBRARIES
(
libmysql SHARED
${
LIBS
}
EXPORTS
${
CLIENT_API_FUNCTIONS
}
)
IF
(
UNIX
)
IF
(
UNIX
)
# Name of shared library is mysqlclient on Unix
# Name of shared library is mysqlclient on Unix
SET_TARGET_PROPERTIES
(
libmysql PROPERTIES OUTPUT_NAME mysqlclient
)
SET_TARGET_PROPERTIES
(
libmysql PROPERTIES
OUTPUT_NAME mysqlclient
VERSION
"
${
SHARED_LIB_MAJOR_VERSION
}
.0.0"
SOVERSION
"
${
SHARED_LIB_MAJOR_VERSION
}
"
)
# clean direct output needs to be set several targets have the same name
# clean direct output needs to be set several targets have the same name
#(mysqlclient in this case)
#(mysqlclient in this case)
SET_TARGET_PROPERTIES
(
mysqlclient PROPERTIES CLEAN_DIRECT_OUTPUT 1
)
SET_TARGET_PROPERTIES
(
mysqlclient PROPERTIES CLEAN_DIRECT_OUTPUT 1
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment