Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Command Shell
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Thomas Vogt
Command Shell
Commits
88554469
Commit
88554469
authored
4 years ago
by
Thomas Vogt
Browse files
Options
Downloads
Patches
Plain Diff
Updated Install Configuration.
parent
5dffc332
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
CMakeLists.txt
+1
-4
1 addition, 4 deletions
CMakeLists.txt
command_shell/CMakeLists.txt
+3
-10
3 additions, 10 deletions
command_shell/CMakeLists.txt
commands/CMakeLists.txt
+3
-10
3 additions, 10 deletions
commands/CMakeLists.txt
liblinenoise/CMakeLists.txt
+3
-10
3 additions, 10 deletions
liblinenoise/CMakeLists.txt
with
10 additions
and
34 deletions
CMakeLists.txt
+
1
−
4
View file @
88554469
...
...
@@ -22,7 +22,4 @@ add_subdirectory( commands )
add_subdirectory
(
application
)
install
(
FILES LICENSE
TYPE DOC
RENAME
${
PROJECT_NAME
}
.LICENSE
)
install
(
FILES LICENSE TYPE DOC RENAME
${
PROJECT_NAME
}
.LICENSE
)
This diff is collapsed.
Click to expand it.
command_shell/CMakeLists.txt
+
3
−
10
View file @
88554469
...
...
@@ -47,21 +47,14 @@ target_include_directories(
target_link_libraries
(
command_shell PRIVATE linenoise helper
)
install
(
TARGETS command_shell
COMPONENT runtime
EXPORT command_shell-config
)
install
(
TARGETS command_shell EXPORT command_shell-config
)
install
(
DIRECTORY
${
CMAKE_CURRENT_SOURCE_DIR
}
COMPONENT development
DESTINATION
${
CMAKE_INSTALL_INCLUDEDIR
}
TYPE INCLUDE
FILES_MATCHING
PATTERN
"*.hpp"
PATTERN
"*Test.*"
EXCLUDE
PATTERN
"implementation"
EXCLUDE
)
install
(
EXPORT command_shell-config
COMPONENT development
DESTINATION
${
CMAKE_INSTALL_LIBDIR
}
/cmake
)
install
(
EXPORT command_shell-config DESTINATION
${
CMAKE_INSTALL_LIBDIR
}
/cmake
)
This diff is collapsed.
Click to expand it.
commands/CMakeLists.txt
+
3
−
10
View file @
88554469
...
...
@@ -51,21 +51,14 @@ target_include_directories(
target_link_libraries
(
commands PRIVATE helper
)
install
(
TARGETS commands
COMPONENT runtime
EXPORT commands-config
)
install
(
TARGETS commands EXPORT commands-config
)
install
(
DIRECTORY
${
CMAKE_CURRENT_SOURCE_DIR
}
COMPONENT development
DESTINATION
${
CMAKE_INSTALL_INCLUDEDIR
}
TYPE INCLUDE
FILES_MATCHING
PATTERN
"*.hpp"
PATTERN
"*Test.*"
EXCLUDE
PATTERN
"implementation"
EXCLUDE
)
install
(
EXPORT commands-config
COMPONENT development
DESTINATION
${
CMAKE_INSTALL_LIBDIR
}
/cmake
)
install
(
EXPORT commands-config DESTINATION
${
CMAKE_INSTALL_LIBDIR
}
/cmake
)
This diff is collapsed.
Click to expand it.
liblinenoise/CMakeLists.txt
+
3
−
10
View file @
88554469
...
...
@@ -17,19 +17,12 @@ target_sources(
target_include_directories
(
linenoise PUBLIC $<BUILD_INTERFACE:
${
CMAKE_CURRENT_SOURCE_DIR
}
>
)
install
(
TARGETS linenoise
COMPONENT runtime
EXPORT linenoise-config
)
install
(
TARGETS linenoise EXPORT linenoise-config
)
install
(
DIRECTORY
${
CMAKE_CURRENT_SOURCE_DIR
}
/linenoise
COMPONENT development
DESTINATION
${
CMAKE_INSTALL_INCLUDEDIR
}
TYPE INCLUDE
FILES_MATCHING
PATTERN
"*.h"
)
install
(
EXPORT linenoise-config
COMPONENT development
DESTINATION
${
CMAKE_INSTALL_LIBDIR
}
/cmake
)
install
(
EXPORT linenoise-config DESTINATION
${
CMAKE_INSTALL_LIBDIR
}
/cmake
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment