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
8019387a
Commit
8019387a
authored
Apr 07, 2016
by
vitaut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove the build directory
parent
76fba461
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
132 deletions
+0
-132
build/cppformat-config-version.cmake
build/cppformat-config-version.cmake
+0
-31
build/cppformat-config.cmake
build/cppformat-config.cmake
+0
-28
build/cppformat-targets.cmake
build/cppformat-targets.cmake
+0
-73
No files found.
build/cppformat-config-version.cmake
deleted
100644 → 0
View file @
76fba461
# This is a basic version file for the Config-mode of find_package().
# It is used by write_basic_package_version_file() as input file for configure_file()
# to create a version-file which can be installed along a config.cmake file.
#
# The created file sets PACKAGE_VERSION_EXACT if the current version string and
# the requested version string are exactly the same and it sets
# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version.
# The variable CVF_VERSION must be set before calling configure_file().
set
(
PACKAGE_VERSION
"2.1.0"
)
if
(
"
${
PACKAGE_VERSION
}
"
VERSION_LESS
"
${
PACKAGE_FIND_VERSION
}
"
)
set
(
PACKAGE_VERSION_COMPATIBLE FALSE
)
else
()
set
(
PACKAGE_VERSION_COMPATIBLE TRUE
)
if
(
"
${
PACKAGE_FIND_VERSION
}
"
STREQUAL
"
${
PACKAGE_VERSION
}
"
)
set
(
PACKAGE_VERSION_EXACT TRUE
)
endif
()
endif
()
# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it:
if
(
"
${
CMAKE_SIZEOF_VOID_P
}
"
STREQUAL
""
OR
"8"
STREQUAL
""
)
return
()
endif
()
# check that the installed version has the same 32/64bit-ness as the one which is currently searching:
if
(
NOT
"
${
CMAKE_SIZEOF_VOID_P
}
"
STREQUAL
"8"
)
math
(
EXPR installedBits
"8 * 8"
)
set
(
PACKAGE_VERSION
"
${
PACKAGE_VERSION
}
(
${
installedBits
}
bit)"
)
set
(
PACKAGE_VERSION_UNSUITABLE TRUE
)
endif
()
build/cppformat-config.cmake
deleted
100644 → 0
View file @
76fba461
####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() #######
####### Any changes to this file will be overwritten by the next CMake run ####
####### The input file was cppformat-config.cmake.in ########
get_filename_component
(
PACKAGE_PREFIX_DIR
"
${
CMAKE_CURRENT_LIST_DIR
}
/../../../"
ABSOLUTE
)
macro
(
set_and_check _var _file
)
set
(
${
_var
}
"
${
_file
}
"
)
if
(
NOT EXISTS
"
${
_file
}
"
)
message
(
FATAL_ERROR
"File or directory
${
_file
}
referenced by variable
${
_var
}
does not exist !"
)
endif
()
endmacro
()
macro
(
check_required_components _NAME
)
foreach
(
comp
${${
_NAME
}
_FIND_COMPONENTS
}
)
if
(
NOT
${
_NAME
}
_
${
comp
}
_FOUND
)
if
(
${
_NAME
}
_FIND_REQUIRED_
${
comp
}
)
set
(
${
_NAME
}
_FOUND FALSE
)
endif
()
endif
()
endforeach
()
endmacro
()
####################################################################################
include
(
${
CMAKE_CURRENT_LIST_DIR
}
/cppformat-targets.cmake
)
check_required_components
(
cppformat
)
build/cppformat-targets.cmake
deleted
100644 → 0
View file @
76fba461
# Generated by CMake 3.1.2
if
(
"
${
CMAKE_MAJOR_VERSION
}
.
${
CMAKE_MINOR_VERSION
}
"
LESS 2.5
)
message
(
FATAL_ERROR
"CMake >= 2.6.0 required"
)
endif
()
cmake_policy
(
PUSH
)
cmake_policy
(
VERSION 2.6
)
#----------------------------------------------------------------
# Generated CMake target import file.
#----------------------------------------------------------------
# Commands may need to know the format version.
set
(
CMAKE_IMPORT_FILE_VERSION 1
)
if
(
CMAKE_VERSION VERSION_LESS 3.0.0
)
message
(
FATAL_ERROR
"This file relies on consumers using CMake 3.0.0 or greater."
)
endif
()
# Protect against multiple inclusion, which would fail when already imported targets are added once more.
set
(
_targetsDefined
)
set
(
_targetsNotDefined
)
set
(
_expectedTargets
)
foreach
(
_expectedTarget cppformat cppformat-header-only
)
list
(
APPEND _expectedTargets
${
_expectedTarget
}
)
if
(
NOT TARGET
${
_expectedTarget
}
)
list
(
APPEND _targetsNotDefined
${
_expectedTarget
}
)
endif
()
if
(
TARGET
${
_expectedTarget
}
)
list
(
APPEND _targetsDefined
${
_expectedTarget
}
)
endif
()
endforeach
()
if
(
"
${
_targetsDefined
}
"
STREQUAL
"
${
_expectedTargets
}
"
)
set
(
CMAKE_IMPORT_FILE_VERSION
)
cmake_policy
(
POP
)
return
()
endif
()
if
(
NOT
"
${
_targetsDefined
}
"
STREQUAL
""
)
message
(
FATAL_ERROR
"Some (but not all) targets in this export set were already defined.
\n
Targets Defined:
${
_targetsDefined
}
\n
Targets not yet defined:
${
_targetsNotDefined
}
\n
"
)
endif
()
unset
(
_targetsDefined
)
unset
(
_targetsNotDefined
)
unset
(
_expectedTargets
)
# Create imported target cppformat
add_library
(
cppformat STATIC IMPORTED
)
set_target_properties
(
cppformat PROPERTIES
INTERFACE_COMPILE_OPTIONS
"-std=c++11"
INTERFACE_INCLUDE_DIRECTORIES
"/home/viz/Downloads/cppformat"
)
# Create imported target cppformat-header-only
add_library
(
cppformat-header-only INTERFACE IMPORTED
)
set_target_properties
(
cppformat-header-only PROPERTIES
INTERFACE_COMPILE_DEFINITIONS
"FMT_HEADER_ONLY=1"
INTERFACE_INCLUDE_DIRECTORIES
"/home/viz/Downloads/cppformat"
)
# Import target "cppformat" for configuration "Release"
set_property
(
TARGET cppformat APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE
)
set_target_properties
(
cppformat PROPERTIES
IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE
"CXX"
IMPORTED_LOCATION_RELEASE
"/home/viz/Downloads/cppformat/build/cppformat/libcppformat.a"
)
# This file does not depend on other imported targets which have
# been exported from the same project but in a separate export set.
# Commands beyond this point should not need to know the version.
set
(
CMAKE_IMPORT_FILE_VERSION
)
cmake_policy
(
POP
)
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