Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linphone-desktop
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
linphone-desktop
Commits
7f2c5e92
Commit
7f2c5e92
authored
Jun 07, 2017
by
Ronan Abhamon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(CMakeLists.txt): remove useless groups in regex `source_group`
parent
6e39c40e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
6 deletions
+7
-6
CMakeLists.txt
linphone-desktop/CMakeLists.txt
+7
-6
No files found.
linphone-desktop/CMakeLists.txt
View file @
7f2c5e92
###############################################################################
###############################################################################
#
# CMakeLists.txt
# Copyright (C) 2017 Belledonne Communications, Grenoble France
#
...
...
@@ -281,7 +281,7 @@ qt5_add_resources(RESOURCES ${QRC_RESOURCES})
if
(
WIN32
)
add_executable
(
${
TARGET_NAME
}
WIN32
${
SOURCES
}
${
HEADERS
}
${
RESOURCES
}
linphone.rc
)
else
()
add_executable
(
${
TARGET_NAME
}
${
SOURCES
}
${
HEADERS
}
${
RESOURCES
}
${
QML_SOURCES
}
)
add_executable
(
${
TARGET_NAME
}
${
SOURCES
}
${
HEADERS
}
${
RESOURCES
}
${
QML_SOURCES
}
)
endif
()
bc_git_version
(
${
TARGET_NAME
}
${
PROJECT_VERSION
}
)
add_dependencies
(
${
TARGET_NAME
}
${
TARGET_NAME
}
-git-version
)
...
...
@@ -291,15 +291,16 @@ if (NOT WIN32)
endif
()
set_target_properties
(
${
TARGET_NAME
}
PROPERTIES OUTPUT_NAME
"
${
EXECUTABLE_NAME
}
"
)
target_include_directories
(
${
TARGET_NAME
}
SYSTEM PRIVATE
"
${
LINPHONECXX_INCLUDE_DIRS
}
"
"
${
LINPHONE_INCLUDE_DIRS
}
"
"
${
BELCARD_INCLUDE_DIRS
}
"
"
${
BCTOOLBOX_INCLUDE_DIRS
}
"
)
#to start better integration into IDE
# To start better integration into IDE.
source_group
(
"Qml"
REGULAR_EXPRESSION
".+\.
(qml)
$"
"Qml"
REGULAR_EXPRESSION
".+\.
qml
$"
)
source_group
(
"Js"
REGULAR_EXPRESSION
".+\.
(
js)$"
"Js"
REGULAR_EXPRESSION
".+\.js)$"
)
source_group
(
"Svg"
REGULAR_EXPRESSION
".+\.
(svg)
$"
"Svg"
REGULAR_EXPRESSION
".+\.
svg
$"
)
foreach
(
package
${
QT5_PACKAGES
}
)
...
...
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