Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLMC
Manage
Activity
Members
Labels
Plan
Issues
26
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
VideoLAN
VLMC
Commits
29c0516c
Commit
29c0516c
authored
8 years ago
by
Hugo Beauzée-Luyssen
Browse files
Options
Downloads
Patches
Plain Diff
cmake: Move include/package code into src/CMakeLists.txt
parent
37b0e008
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+0
-13
0 additions, 13 deletions
CMakeLists.txt
src/CMakeLists.txt
+13
-0
13 additions, 0 deletions
src/CMakeLists.txt
with
13 additions
and
13 deletions
CMakeLists.txt
+
0
−
13
View file @
29c0516c
...
...
@@ -93,19 +93,6 @@ SET(WITH_CRASHBUTTON FALSE CACHE BOOL "Enable the crash button")
SET
(
WITH_CRASHHANDLER_GUI FALSE CACHE BOOL
"Enable the crash handler GUI (with backtrace and restart capabilities)"
)
SET
(
WITH_CRASHHANDLER FALSE CACHE BOOL
"Enable the crash handler"
)
FIND_PACKAGE
(
LIBVLC REQUIRED
)
list
(
APPEND VLMC_LIBS
${
LIBVLC_LIBRARY
}
${
LIBVLCCORE_LIBRARY
}
)
INCLUDE_DIRECTORIES
(
${
LIBVLC_INCLUDE_DIR
}
)
FIND_PACKAGE
(
frei0r REQUIRED
)
if
(
APPLE
)
find_library
(
FOUNDATION_FRAMEWORK Foundation
)
find_library
(
APPKIT_FRAMEWORK AppKit
)
endif
()
INCLUDE_DIRECTORIES
(
${
FREI0R_INCLUDE_DIR
}
)
# layout of VLMC installation
# (default values are platform-specific)
SET
(
CMAKE_RUNTIME_OUTPUT_DIRECTORY
${
CMAKE_BINARY_DIR
}
/bin
)
...
...
This diff is collapsed.
Click to expand it.
src/CMakeLists.txt
+
13
−
0
View file @
29c0516c
...
...
@@ -21,6 +21,19 @@ if (Qt5Core_FOUND)
endif
()
endif
()
FIND_PACKAGE
(
LIBVLC REQUIRED
)
list
(
APPEND VLMC_LIBS
${
LIBVLC_LIBRARY
}
${
LIBVLCCORE_LIBRARY
}
)
INCLUDE_DIRECTORIES
(
${
LIBVLC_INCLUDE_DIR
}
)
FIND_PACKAGE
(
frei0r REQUIRED
)
if
(
APPLE
)
find_library
(
FOUNDATION_FRAMEWORK Foundation
)
find_library
(
APPKIT_FRAMEWORK AppKit
)
endif
()
INCLUDE_DIRECTORIES
(
${
FREI0R_INCLUDE_DIR
}
)
SET
(
VLMC_SRCS
Commands/Commands.cpp
Backend/IBackend.h
...
...
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