Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
J
JM
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
jvet
JM
Commits
18c9e115
Commit
18c9e115
authored
5 years ago
by
Karsten Suehring
Browse files
Options
Downloads
Patches
Plain Diff
fix build of rtpdump and rtploss on linux
parent
1bc4fe66
No related branches found
No related tags found
1 merge request
!3
fix build of rtpdump and rtploss on linux
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/app/rtpdump/CMakeLists.txt
+8
-8
8 additions, 8 deletions
source/app/rtpdump/CMakeLists.txt
source/app/rtploss/CMakeLists.txt
+8
-8
8 additions, 8 deletions
source/app/rtploss/CMakeLists.txt
with
16 additions
and
16 deletions
source/app/rtpdump/CMakeLists.txt
+
8
−
8
View file @
18c9e115
...
...
@@ -56,14 +56,14 @@ endif()
if
(
CMAKE_SYSTEM_NAME STREQUAL
"Linux"
)
add_custom_command
(
TARGET
${
EXE_NAME
}
POST_BUILD COMMAND
${
CMAKE_COMMAND
}
-E copy
$<$<CONFIG:Debug>:
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG
}
/
lencod
>
$<$<CONFIG:Release>:
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE
}
/
lencod
>
$<$<CONFIG:RelWithDebInfo>:
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO
}
/
lencod
>
$<$<CONFIG:MinSizeRel>:
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY_MINSIZEREL
}
/
lencod
>
$<$<CONFIG:Debug>:
${
CMAKE_SOURCE_DIR
}
/bin/
lencod
_static>
$<$<CONFIG:Release>:
${
CMAKE_SOURCE_DIR
}
/bin/
lencod
_static>
$<$<CONFIG:RelWithDebInfo>:
${
CMAKE_SOURCE_DIR
}
/bin/
lencod
_static>
$<$<CONFIG:MinSizeRel>:
${
CMAKE_SOURCE_DIR
}
/bin/
lencod
_static>
)
$<$<CONFIG:Debug>:
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG
}
/
rtpdump
>
$<$<CONFIG:Release>:
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE
}
/
rtpdump
>
$<$<CONFIG:RelWithDebInfo>:
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO
}
/
rtpdump
>
$<$<CONFIG:MinSizeRel>:
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY_MINSIZEREL
}
/
rtpdump
>
$<$<CONFIG:Debug>:
${
CMAKE_SOURCE_DIR
}
/bin/
rtpdump
_static>
$<$<CONFIG:Release>:
${
CMAKE_SOURCE_DIR
}
/bin/
rtpdump
_static>
$<$<CONFIG:RelWithDebInfo>:
${
CMAKE_SOURCE_DIR
}
/bin/
rtpdump
_static>
$<$<CONFIG:MinSizeRel>:
${
CMAKE_SOURCE_DIR
}
/bin/
rtpdump
_static>
)
endif
()
# example: place header files in different folders
...
...
This diff is collapsed.
Click to expand it.
source/app/rtploss/CMakeLists.txt
+
8
−
8
View file @
18c9e115
...
...
@@ -51,14 +51,14 @@ endif()
if
(
CMAKE_SYSTEM_NAME STREQUAL
"Linux"
)
add_custom_command
(
TARGET
${
EXE_NAME
}
POST_BUILD COMMAND
${
CMAKE_COMMAND
}
-E copy
$<$<CONFIG:Debug>:
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG
}
/
lencod
>
$<$<CONFIG:Release>:
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE
}
/
lencod
>
$<$<CONFIG:RelWithDebInfo>:
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO
}
/
lencod
>
$<$<CONFIG:MinSizeRel>:
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY_MINSIZEREL
}
/
lencod
>
$<$<CONFIG:Debug>:
${
CMAKE_SOURCE_DIR
}
/bin/
lencod
_static>
$<$<CONFIG:Release>:
${
CMAKE_SOURCE_DIR
}
/bin/
lencod
_static>
$<$<CONFIG:RelWithDebInfo>:
${
CMAKE_SOURCE_DIR
}
/bin/
lencod
_static>
$<$<CONFIG:MinSizeRel>:
${
CMAKE_SOURCE_DIR
}
/bin/
lencod
_static>
)
$<$<CONFIG:Debug>:
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG
}
/
rtploss
>
$<$<CONFIG:Release>:
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE
}
/
rtploss
>
$<$<CONFIG:RelWithDebInfo>:
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO
}
/
rtploss
>
$<$<CONFIG:MinSizeRel>:
${
CMAKE_RUNTIME_OUTPUT_DIRECTORY_MINSIZEREL
}
/
rtploss
>
$<$<CONFIG:Debug>:
${
CMAKE_SOURCE_DIR
}
/bin/
rtploss
_static>
$<$<CONFIG:Release>:
${
CMAKE_SOURCE_DIR
}
/bin/
rtploss
_static>
$<$<CONFIG:RelWithDebInfo>:
${
CMAKE_SOURCE_DIR
}
/bin/
rtploss
_static>
$<$<CONFIG:MinSizeRel>:
${
CMAKE_SOURCE_DIR
}
/bin/
rtploss
_static>
)
endif
()
# example: place header files in different folders
...
...
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