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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
12333385
Commit
12333385
authored
Nov 09, 2017
by
Tor Didriksen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dos2unix cmake/mysql_add_executable.cmake
parent
0ee06722
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
48 deletions
+48
-48
cmake/mysql_add_executable.cmake
cmake/mysql_add_executable.cmake
+48
-48
No files found.
cmake/mysql_add_executable.cmake
View file @
12333385
# Copyright (c) 2009, 201
0, Oracle and/or its affiliates. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# Add executable plus some additional MySQL specific stuff
# Usage (same as for standard CMake's ADD_EXECUTABLE)
#
# MYSQL_ADD_EXECUTABLE(target source1...sourceN)
#
# MySQL specifics:
# - instruct CPack to install executable under ${CMAKE_INSTALL_PREFIX}/bin directory
# On Windows :
# - add version resource
# - instruct CPack to do autenticode signing if SIGNCODE is set
INCLUDE
(
cmake_parse_arguments
)
FUNCTION
(
MYSQL_ADD_EXECUTABLE
)
# Pass-through arguments for ADD_EXECUTABLE
MYSQL_PARSE_ARGUMENTS
(
ARG
"WIN32;MACOSX_BUNDLE;EXCLUDE_FROM_ALL;DESTINATION;COMPONENT"
""
${
ARGN
}
)
LIST
(
GET ARG_DEFAULT_ARGS 0 target
)
LIST
(
REMOVE_AT ARG_DEFAULT_ARGS 0
)
SET
(
sources
${
ARG_DEFAULT_ARGS
}
)
ADD_VERSION_INFO
(
${
target
}
EXECUTABLE sources
)
ADD_EXECUTABLE
(
${
target
}
${
ARG_WIN32
}
${
ARG_MACOSX_BUNDLE
}
${
ARG_EXCLUDE_FROM_ALL
}
${
sources
}
)
# tell CPack where to install
IF
(
NOT ARG_EXCLUDE_FROM_ALL
)
IF
(
NOT ARG_DESTINATION
)
SET
(
ARG_DESTINATION
${
INSTALL_BINDIR
}
)
# Copyright (c) 2009, 201
7, Oracle and/or its affiliates. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# Add executable plus some additional MySQL specific stuff
# Usage (same as for standard CMake's ADD_EXECUTABLE)
#
# MYSQL_ADD_EXECUTABLE(target source1...sourceN)
#
# MySQL specifics:
# - instruct CPack to install executable under ${CMAKE_INSTALL_PREFIX}/bin directory
# On Windows :
# - add version resource
# - instruct CPack to do autenticode signing if SIGNCODE is set
INCLUDE
(
cmake_parse_arguments
)
FUNCTION
(
MYSQL_ADD_EXECUTABLE
)
# Pass-through arguments for ADD_EXECUTABLE
MYSQL_PARSE_ARGUMENTS
(
ARG
"WIN32;MACOSX_BUNDLE;EXCLUDE_FROM_ALL;DESTINATION;COMPONENT"
""
${
ARGN
}
)
LIST
(
GET ARG_DEFAULT_ARGS 0 target
)
LIST
(
REMOVE_AT ARG_DEFAULT_ARGS 0
)
SET
(
sources
${
ARG_DEFAULT_ARGS
}
)
ADD_VERSION_INFO
(
${
target
}
EXECUTABLE sources
)
ADD_EXECUTABLE
(
${
target
}
${
ARG_WIN32
}
${
ARG_MACOSX_BUNDLE
}
${
ARG_EXCLUDE_FROM_ALL
}
${
sources
}
)
# tell CPack where to install
IF
(
NOT ARG_EXCLUDE_FROM_ALL
)
IF
(
NOT ARG_DESTINATION
)
SET
(
ARG_DESTINATION
${
INSTALL_BINDIR
}
)
ENDIF
()
IF
(
ARG_COMPONENT
)
SET
(
COMP COMPONENT
${
ARG_COMPONENT
}
)
...
...
@@ -50,7 +50,7 @@ FUNCTION (MYSQL_ADD_EXECUTABLE)
SET
(
COMP COMPONENT
${
MYSQL_INSTALL_COMPONENT
}
)
ELSE
()
SET
(
COMP COMPONENT Client
)
ENDIF
()
MYSQL_INSTALL_TARGETS
(
${
target
}
DESTINATION
${
ARG_DESTINATION
}
${
COMP
}
)
ENDIF
()
ENDIF
()
MYSQL_INSTALL_TARGETS
(
${
target
}
DESTINATION
${
ARG_DESTINATION
}
${
COMP
}
)
ENDIF
()
ENDFUNCTION
()
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