Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
F
fmt
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
Libraries
fmt
Commits
aba72982
Commit
aba72982
authored
Jun 25, 2017
by
Alex Martin
Committed by
Victor Zverovich
Jun 25, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove 'FMT_CPPFORMAT' CMake option
parent
e8ef1037
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
9 deletions
+0
-9
fmt/CMakeLists.txt
fmt/CMakeLists.txt
+0
-9
No files found.
fmt/CMakeLists.txt
View file @
aba72982
...
@@ -10,12 +10,6 @@ endif ()
...
@@ -10,12 +10,6 @@ endif ()
add_library
(
fmt
${
FMT_SOURCES
}
${
FMT_HEADERS
}
../README.rst ../ChangeLog.rst
)
add_library
(
fmt
${
FMT_SOURCES
}
${
FMT_HEADERS
}
../README.rst ../ChangeLog.rst
)
add_library
(
fmt::fmt ALIAS fmt
)
add_library
(
fmt::fmt ALIAS fmt
)
option
(
FMT_CPPFORMAT
"Build cppformat library for backward compatibility."
OFF
)
if
(
FMT_CPPFORMAT
)
message
(
WARNING
"The cppformat library is deprecated, use fmt instead."
)
add_library
(
cppformat
${
FMT_SOURCES
}
${
FMT_HEADERS
}
)
endif
()
# Starting with cmake 3.1 the CXX_STANDARD property can be used instead.
# Starting with cmake 3.1 the CXX_STANDARD property can be used instead.
# Note: Don't make -std=c++11 public or interface, since it breaks projects
# Note: Don't make -std=c++11 public or interface, since it breaks projects
# that use C++14.
# that use C++14.
...
@@ -93,7 +87,4 @@ if (FMT_INSTALL)
...
@@ -93,7 +87,4 @@ if (FMT_INSTALL)
install
(
TARGETS
${
INSTALL_TARGETS
}
EXPORT
${
targets_export_name
}
install
(
TARGETS
${
INSTALL_TARGETS
}
EXPORT
${
targets_export_name
}
DESTINATION
${
FMT_LIB_DIR
}
)
DESTINATION
${
FMT_LIB_DIR
}
)
install
(
FILES
${
FMT_HEADERS
}
DESTINATION include/fmt
)
install
(
FILES
${
FMT_HEADERS
}
DESTINATION include/fmt
)
if
(
FMT_CPPFORMAT
)
install
(
TARGETS cppformat DESTINATION
${
FMT_LIB_DIR
}
)
endif
()
endif
()
endif
()
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