-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changed to SHA256 #138 #147
base: master
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
# This is the CMakeCache file. | ||
# For build in directory: c:/Users/vaish/OneDrive/Apps/openchemistry/cmake | ||
# It was generated by CMake: C:/Program Files/CMake/bin/cmake.exe | ||
# You can edit this file to change values found and used by cmake. | ||
# If you do not want to change any of the values, simply exit the editor. | ||
# If you do want to change a value, simply edit, save, and exit the editor. | ||
# The syntax for the file is as follows: | ||
# KEY:TYPE=VALUE | ||
# KEY is the name of a variable in the cache. | ||
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. | ||
# VALUE is the current value for the KEY. | ||
|
||
######################## | ||
# EXTERNAL cache entries | ||
######################## | ||
|
||
//Value Computed by CMake. | ||
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/vaish/OneDrive/Apps/openchemistry/cmake/CMakeFiles/pkgRedirects | ||
|
||
//Program used to build from makefiles. | ||
CMAKE_MAKE_PROGRAM:STRING=nmake | ||
|
||
//Value Computed by CMake | ||
CMAKE_PROJECT_DESCRIPTION:STATIC= | ||
|
||
//Value Computed by CMake | ||
CMAKE_PROJECT_HOMEPAGE_URL:STATIC= | ||
|
||
//Value Computed by CMake | ||
CMAKE_PROJECT_NAME:STATIC=OpenChemistry | ||
|
||
//Value Computed by CMake | ||
OpenChemistry_BINARY_DIR:STATIC=C:/Users/vaish/OneDrive/Apps/openchemistry/cmake | ||
|
||
//Value Computed by CMake | ||
OpenChemistry_IS_TOP_LEVEL:STATIC=ON | ||
|
||
//Value Computed by CMake | ||
OpenChemistry_SOURCE_DIR:STATIC=C:/Users/vaish/OneDrive/Apps/openchemistry | ||
|
||
|
||
######################## | ||
# INTERNAL cache entries | ||
######################## | ||
|
||
//This is the directory where this CMakeCache.txt was created | ||
CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/vaish/OneDrive/Apps/openchemistry/cmake | ||
//Major version of cmake used to create the current loaded cache | ||
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 | ||
//Minor version of cmake used to create the current loaded cache | ||
CMAKE_CACHE_MINOR_VERSION:INTERNAL=31 | ||
//Patch version of cmake used to create the current loaded cache | ||
CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 | ||
//Path to CMake executable. | ||
CMAKE_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cmake.exe | ||
//Path to cpack program executable. | ||
CMAKE_CPACK_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cpack.exe | ||
//Path to ctest program executable. | ||
CMAKE_CTEST_COMMAND:INTERNAL=C:/Program Files/CMake/bin/ctest.exe | ||
//Path to cache edit program executable. | ||
CMAKE_EDIT_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cmake-gui.exe | ||
//Name of external makefile project generator. | ||
CMAKE_EXTRA_GENERATOR:INTERNAL= | ||
//Name of generator. | ||
CMAKE_GENERATOR:INTERNAL=NMake Makefiles | ||
//Generator instance identifier. | ||
CMAKE_GENERATOR_INSTANCE:INTERNAL= | ||
//Name of generator platform. | ||
CMAKE_GENERATOR_PLATFORM:INTERNAL= | ||
//Name of generator toolset. | ||
CMAKE_GENERATOR_TOOLSET:INTERNAL= | ||
//Source directory with the top level CMakeLists.txt file for this | ||
// project | ||
CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/vaish/OneDrive/Apps/openchemistry | ||
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM | ||
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1 | ||
//number of local generators | ||
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1 | ||
//Platform information initialized | ||
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 | ||
//Path to CMake installation. | ||
CMAKE_ROOT:INTERNAL=C:/Program Files/CMake/share/cmake-3.31 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This file should bot be part of the PR |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
set(CMAKE_HOST_SYSTEM "Windows-10.0.22631") | ||
set(CMAKE_HOST_SYSTEM_NAME "Windows") | ||
set(CMAKE_HOST_SYSTEM_VERSION "10.0.22631") | ||
set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") | ||
|
||
|
||
|
||
set(CMAKE_SYSTEM "Windows-10.0.22631") | ||
set(CMAKE_SYSTEM_NAME "Windows") | ||
set(CMAKE_SYSTEM_VERSION "10.0.22631") | ||
set(CMAKE_SYSTEM_PROCESSOR "AMD64") | ||
|
||
set(CMAKE_CROSSCOMPILING "FALSE") | ||
|
||
set(CMAKE_SYSTEM_LOADED 1) |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This file should bot be part of the PR |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
--- | ||
events: | ||
- | ||
kind: "message-v1" | ||
backtrace: | ||
- "C:/Program Files/CMake/share/cmake-3.31/Modules/CMakeDetermineSystem.cmake:205 (message)" | ||
- "CMakeLists.txt:2 (project)" | ||
message: | | ||
The system is: Windows - 10.0.22631 - AMD64 | ||
... |
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This file should bot be part of the PR |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# This file is generated by cmake for dependency checking of the CMakeCache.txt file |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file should bot be part of the PR