Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 0a86814

Browse files
Merge pull request #39 from atplant/master
Tests added and other features
2 parents 4c1b370 + 4dbe3ae commit 0a86814

19 files changed

+15236
-13
lines changed

‎CMakeCache.txt

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# This is the CMakeCache file.
2+
# For build in directory: c:/Users/borti/OneDrive/Documents/OSU/CS 362/CS-362-Algorithms_-_Data_Structures
3+
# It was generated by CMake: C:/Users/borti/Downloads/cmake-3.13.4-win64-x64/cmake-3.13.4-win64-x64/bin/cmake.exe
4+
# You can edit this file to change values found and used by cmake.
5+
# If you do not want to change any of the values, simply exit the editor.
6+
# If you do want to change a value, simply edit, save, and exit the editor.
7+
# The syntax for the file is as follows:
8+
# KEY:TYPE=VALUE
9+
# KEY is the name of a variable in the cache.
10+
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
11+
# VALUE is the current value for the KEY.
12+
13+
########################
14+
# EXTERNAL cache entries
15+
########################
16+
17+
//Semicolon separated list of supported configuration types, only
18+
// supports Debug, Release, MinSizeRel, and RelWithDebInfo, anything
19+
// else will be ignored.
20+
CMAKE_CONFIGURATION_TYPES:STRING=Debug;Release;MinSizeRel;RelWithDebInfo
21+
22+
//Value Computed by CMake
23+
CMAKE_PROJECT_DESCRIPTION:STATIC=
24+
25+
//Value Computed by CMake
26+
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
27+
28+
//Value Computed by CMake
29+
CMAKE_PROJECT_NAME:STATIC=anAlgoProbAday
30+
31+
//Value Computed by CMake
32+
anAlgoProbAday_BINARY_DIR:STATIC=C:/Users/borti/OneDrive/Documents/OSU/CS 362/CS-362-Algorithms_-_Data_Structures
33+
34+
//Value Computed by CMake
35+
anAlgoProbAday_SOURCE_DIR:STATIC=C:/Users/borti/OneDrive/Documents/OSU/CS 362/CS-362-Algorithms_-_Data_Structures
36+
37+
38+
########################
39+
# INTERNAL cache entries
40+
########################
41+
42+
//This is the directory where this CMakeCache.txt was created
43+
CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/borti/OneDrive/Documents/OSU/CS 362/CS-362-Algorithms_-_Data_Structures
44+
//Major version of cmake used to create the current loaded cache
45+
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
46+
//Minor version of cmake used to create the current loaded cache
47+
CMAKE_CACHE_MINOR_VERSION:INTERNAL=13
48+
//Patch version of cmake used to create the current loaded cache
49+
CMAKE_CACHE_PATCH_VERSION:INTERNAL=4
50+
//Path to CMake executable.
51+
CMAKE_COMMAND:INTERNAL=C:/Users/borti/Downloads/cmake-3.13.4-win64-x64/cmake-3.13.4-win64-x64/bin/cmake.exe
52+
//Path to cpack program executable.
53+
CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/borti/Downloads/cmake-3.13.4-win64-x64/cmake-3.13.4-win64-x64/bin/cpack.exe
54+
//Path to ctest program executable.
55+
CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/borti/Downloads/cmake-3.13.4-win64-x64/cmake-3.13.4-win64-x64/bin/ctest.exe
56+
//Name of external makefile project generator.
57+
CMAKE_EXTRA_GENERATOR:INTERNAL=
58+
//Name of generator.
59+
CMAKE_GENERATOR:INTERNAL=Visual Studio 15 2017
60+
//Generator instance identifier.
61+
CMAKE_GENERATOR_INSTANCE:INTERNAL=
62+
//Name of generator platform.
63+
CMAKE_GENERATOR_PLATFORM:INTERNAL=
64+
//Name of generator toolset.
65+
CMAKE_GENERATOR_TOOLSET:INTERNAL=
66+
//Source directory with the top level CMakeLists.txt file for this
67+
// project
68+
CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/borti/OneDrive/Documents/OSU/CS 362/CS-362-Algorithms_-_Data_Structures
69+
//number of local generators
70+
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=1
71+
//Platform information initialized
72+
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
73+
//Path to CMake installation.
74+
CMAKE_ROOT:INTERNAL=C:/Users/borti/Downloads/cmake-3.13.4-win64-x64/cmake-3.13.4-win64-x64/share/cmake-3.13
75+

‎CMakeFiles/3.13.4/CMakeSystem.cmake

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
set(CMAKE_HOST_SYSTEM "Windows-10.0.17134")
2+
set(CMAKE_HOST_SYSTEM_NAME "Windows")
3+
set(CMAKE_HOST_SYSTEM_VERSION "10.0.17134")
4+
set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64")
5+
6+
7+
8+
set(CMAKE_SYSTEM "Windows-10.0.17134")
9+
set(CMAKE_SYSTEM_NAME "Windows")
10+
set(CMAKE_SYSTEM_VERSION "10.0.17134")
11+
set(CMAKE_SYSTEM_PROCESSOR "AMD64")
12+
13+
set(CMAKE_CROSSCOMPILING "FALSE")
14+
15+
set(CMAKE_SYSTEM_LOADED 1)

‎CMakeFiles/CMakeOutput.log

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
The system is: Windows - 10.0.17134 - AMD64

‎CMakeFiles/cmake.check_cache

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# This file is generated by cmake for dependency checking of the CMakeCache.txt file

‎include/bubbleSort.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#ifndef BUBBLE_SORT_H
2323
#define BUBBLE_SORT_H
2424

25-
#include <generic.h>
25+
#include "generic.h"
2626

2727
namespace algo {
2828
template <typename T>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /