forked from ivmai/bdwgc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
41 changed files
with
6,725 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="16.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<ItemGroup> | ||
<CustomBuild Include="C:\workspace\bdwgc\CMakeLists.txt" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# The BDWgc CMake configuration file. | ||
|
||
|
||
####### 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 Config.cmake.in ######## | ||
|
||
get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) | ||
|
||
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}/BDWgcTargets.cmake") | ||
check_required_components(gc) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# 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 "8.3.0") | ||
|
||
if (PACKAGE_FIND_VERSION_RANGE) | ||
# Package version must be in the requested version range | ||
if ((PACKAGE_FIND_VERSION_RANGE_MIN STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MIN) | ||
OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_GREATER PACKAGE_FIND_VERSION_MAX) | ||
OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_GREATER_EQUAL PACKAGE_FIND_VERSION_MAX))) | ||
set(PACKAGE_VERSION_COMPATIBLE FALSE) | ||
else() | ||
set(PACKAGE_VERSION_COMPATIBLE TRUE) | ||
endif() | ||
else() | ||
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() | ||
endif() | ||
|
||
|
||
# if the installed project requested no architecture check, don't perform the check | ||
if("FALSE") | ||
return() | ||
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() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,123 @@ | ||
# Generated by CMake | ||
|
||
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.6) | ||
message(FATAL_ERROR "CMake >= 2.6.0 required") | ||
endif() | ||
cmake_policy(PUSH) | ||
cmake_policy(VERSION 2.6...3.20) | ||
#---------------------------------------------------------------- | ||
# Generated CMake target import file. | ||
#---------------------------------------------------------------- | ||
|
||
# Commands may need to know the format version. | ||
set(CMAKE_IMPORT_FILE_VERSION 1) | ||
|
||
# Protect against multiple inclusion, which would fail when already imported targets are added once more. | ||
set(_targetsDefined) | ||
set(_targetsNotDefined) | ||
set(_expectedTargets) | ||
foreach(_expectedTarget cord gc) | ||
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}") | ||
unset(_targetsDefined) | ||
unset(_targetsNotDefined) | ||
unset(_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.\nTargets Defined: ${_targetsDefined}\nTargets not yet defined: ${_targetsNotDefined}\n") | ||
endif() | ||
unset(_targetsDefined) | ||
unset(_targetsNotDefined) | ||
unset(_expectedTargets) | ||
|
||
|
||
# Create imported target cord | ||
add_library(cord SHARED IMPORTED) | ||
|
||
set_target_properties(cord PROPERTIES | ||
INTERFACE_INCLUDE_DIRECTORIES "C:/workspace/bdwgc/include" | ||
) | ||
|
||
# Create imported target gc | ||
add_library(gc SHARED IMPORTED) | ||
|
||
set_target_properties(gc PROPERTIES | ||
INTERFACE_INCLUDE_DIRECTORIES "C:/workspace/bdwgc/include" | ||
) | ||
|
||
# Import target "cord" for configuration "Debug" | ||
set_property(TARGET cord APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) | ||
set_target_properties(cord PROPERTIES | ||
IMPORTED_IMPLIB_DEBUG "C:/workspace/bdwgc/out/Debug/cord.lib" | ||
IMPORTED_LINK_DEPENDENT_LIBRARIES_DEBUG "gc" | ||
IMPORTED_LOCATION_DEBUG "C:/workspace/bdwgc/out/Debug/cord.dll" | ||
) | ||
|
||
# Import target "gc" for configuration "Debug" | ||
set_property(TARGET gc APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) | ||
set_target_properties(gc PROPERTIES | ||
IMPORTED_IMPLIB_DEBUG "C:/workspace/bdwgc/out/Debug/gc.lib" | ||
IMPORTED_LOCATION_DEBUG "C:/workspace/bdwgc/out/Debug/gc.dll" | ||
) | ||
|
||
# Import target "cord" for configuration "Release" | ||
set_property(TARGET cord APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) | ||
set_target_properties(cord PROPERTIES | ||
IMPORTED_IMPLIB_RELEASE "C:/workspace/bdwgc/out/Release/cord.lib" | ||
IMPORTED_LINK_DEPENDENT_LIBRARIES_RELEASE "gc" | ||
IMPORTED_LOCATION_RELEASE "C:/workspace/bdwgc/out/Release/cord.dll" | ||
) | ||
|
||
# Import target "gc" for configuration "Release" | ||
set_property(TARGET gc APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) | ||
set_target_properties(gc PROPERTIES | ||
IMPORTED_IMPLIB_RELEASE "C:/workspace/bdwgc/out/Release/gc.lib" | ||
IMPORTED_LOCATION_RELEASE "C:/workspace/bdwgc/out/Release/gc.dll" | ||
) | ||
|
||
# Import target "cord" for configuration "MinSizeRel" | ||
set_property(TARGET cord APPEND PROPERTY IMPORTED_CONFIGURATIONS MINSIZEREL) | ||
set_target_properties(cord PROPERTIES | ||
IMPORTED_IMPLIB_MINSIZEREL "C:/workspace/bdwgc/out/MinSizeRel/cord.lib" | ||
IMPORTED_LINK_DEPENDENT_LIBRARIES_MINSIZEREL "gc" | ||
IMPORTED_LOCATION_MINSIZEREL "C:/workspace/bdwgc/out/MinSizeRel/cord.dll" | ||
) | ||
|
||
# Import target "gc" for configuration "MinSizeRel" | ||
set_property(TARGET gc APPEND PROPERTY IMPORTED_CONFIGURATIONS MINSIZEREL) | ||
set_target_properties(gc PROPERTIES | ||
IMPORTED_IMPLIB_MINSIZEREL "C:/workspace/bdwgc/out/MinSizeRel/gc.lib" | ||
IMPORTED_LOCATION_MINSIZEREL "C:/workspace/bdwgc/out/MinSizeRel/gc.dll" | ||
) | ||
|
||
# Import target "cord" for configuration "RelWithDebInfo" | ||
set_property(TARGET cord APPEND PROPERTY IMPORTED_CONFIGURATIONS RELWITHDEBINFO) | ||
set_target_properties(cord PROPERTIES | ||
IMPORTED_IMPLIB_RELWITHDEBINFO "C:/workspace/bdwgc/out/RelWithDebInfo/cord.lib" | ||
IMPORTED_LINK_DEPENDENT_LIBRARIES_RELWITHDEBINFO "gc" | ||
IMPORTED_LOCATION_RELWITHDEBINFO "C:/workspace/bdwgc/out/RelWithDebInfo/cord.dll" | ||
) | ||
|
||
# Import target "gc" for configuration "RelWithDebInfo" | ||
set_property(TARGET gc APPEND PROPERTY IMPORTED_CONFIGURATIONS RELWITHDEBINFO) | ||
set_target_properties(gc PROPERTIES | ||
IMPORTED_IMPLIB_RELWITHDEBINFO "C:/workspace/bdwgc/out/RelWithDebInfo/gc.lib" | ||
IMPORTED_LOCATION_RELWITHDEBINFO "C:/workspace/bdwgc/out/RelWithDebInfo/gc.dll" | ||
) | ||
|
||
# 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) |
Oops, something went wrong.