diff --git a/FileSeperator/.idea/.name b/FileSeperator/.idea/.name new file mode 100644 index 0000000..3174435 --- /dev/null +++ b/FileSeperator/.idea/.name @@ -0,0 +1 @@ +FileSeperator \ No newline at end of file diff --git a/FileSeperator/CMakeLists.txt b/FileSeperator/CMakeLists.txt index ae0264b..61e77f7 100644 --- a/FileSeperator/CMakeLists.txt +++ b/FileSeperator/CMakeLists.txt @@ -3,4 +3,4 @@ project(FileSeperator C) set(CMAKE_C_STANDARD 11) -add_executable(FileSeperator main.c) \ No newline at end of file +add_executable(FileSeperator main.c printHelper.h fileHelper.h pythagoreanMeans.h kmeans.h linearRegression.h usefulStats.h SUBMENU_LinearRegression.h globalDefinitions.h outlierDetection.h dataHelper.h SUBMENU_Kmeans.h SUBMENU_OutlierDetection.h) \ No newline at end of file diff --git a/FileSeperator/SUBMENU_Kmeans.h b/FileSeperator/SUBMENU_Kmeans.h new file mode 100644 index 0000000..24449ba --- /dev/null +++ b/FileSeperator/SUBMENU_Kmeans.h @@ -0,0 +1,10 @@ +/********************************************************************** +Name: +Description: +@author - +@updated - +**********************************************************************/ +#ifndef FILESEPERATOR_SUBMENU_KMEANS_H +#define FILESEPERATOR_SUBMENU_KMEANS_H + +#endif //FILESEPERATOR_SUBMENU_KMEANS_H diff --git a/FileSeperator/SUBMENU_LinearRegression.h b/FileSeperator/SUBMENU_LinearRegression.h new file mode 100644 index 0000000..2b665d7 --- /dev/null +++ b/FileSeperator/SUBMENU_LinearRegression.h @@ -0,0 +1,299 @@ +//TODO +//FIXME CLEAN UP STATE MACHINE +//FIXME HOW DO WE ACTUALL CALL THE LINEAR REGRESSION FUNCTION??? +//We can skip these if we run out of time +//FIXME IMPLEMENT LINKED LIST TO PASS DATA TO ANALYZE REGRESSION +//FIXME IMPLEMENT ANALYZE REGRESSION +/********************************************************************** +Name: SUBMENU_LinearRegression.h +Description: This is a library which controls the Linear Regression + Sub Menu. It allows the user to perform a linear + regression, analyze the regression based on selected + input data, and exit. +@author - Green Team SS20 CIS241 +@updated - 7/8/2020 +**********************************************************************/ +#ifndef FILESEPERATOR_SUBMENU_LINEARREGRESSION_H +#define FILESEPERATOR_SUBMENU_LINEARREGRESSION_H +//Included Libraries +#include +#include +#include "linearRegression.h" +#include "globalDefinitions.h" +#include "usefulStats.h" +//State Definitions +#define LR_PERFORM_REGRESSION 0 +#define LR_ANALYZE_REGRESSION 1 +#define LR_EXIT 2 +//Structs +typedef struct LR_StateControl { + int state; + int userContinue; +}lrSC; +typedef struct LR_DataPoints { + char* nameXY; + lrCo *lrP; + int xData; + int yData; +}lrDP; + +//Function Prototypes +int lrSub_receiveInput(lrSC *u); +void lrSub_exit(lrSC *u); +int lrSub_stateMachine(lrSC *u, char dataSet[2330][5][20]); +void lrSub_performRegression(char dataSet[2330][5][20]); +char *lrSub_dataName(int i); +int lrSub_selectData(char* var); +void linearRegressionSubMenu(char dataSet[2330][5][20]); + +/********************************************************************** +Name: linearRegressionSubMenu +Description: This function is the main driver for the linear regression + submenu +@author - Brendan P. Beauchamp +@updated - 7/17/2020 +@param - char dataSet[2330][5][20] + This is the dataset read from Dr. Bhuse's input file +@return - void +**********************************************************************/ +void linearRegressionSubMenu(char dataSet[2330][5][20]) +{ + lrSC session; + session.userContinue = 1; + while(lrSub_receiveInput(&session)) + { + lrSub_stateMachine(&session, dataSet); + } +} +/********************************************************************** +Name:lrSub_receiveInput +Description: This function is used to determine what the user would + like to do in the linear regression sub menu +@author - Brendan P. Beauchamp +@updated - 7/17/2020 +@param - lrSC *u + This is a structure which contains variables useful to + maintaining the state of the linear regression sub menu. +@return - int {1,0} + This is a value which states 1 if the user would like + to continue running the program or 0 if the would not. +**********************************************************************/ +int lrSub_receiveInput(lrSC *u) +{ + int ans; + int invalid = 1; + do { + printf("Linear Regression: STATE MACHINE\n"); + printf("What would you like to do?\n"); + printf("Options:\n"); + printf("0:\tPerform Regression\n"); + printf("1:\tAnalyze Regression\n"); + printf("2:\tEXIT\n"); + + scanf("%d", &ans); + + //Answer is incorrect + if(ans < 0 || ans > 2 ) + { + printf("\nINVALID INPUT!\n"); + } else{ + invalid = 0; + } + }while(invalid); + + //Set State + u->state = ans; + + return u->state == LR_EXIT ? 0 : 1; +} +/********************************************************************** +Name: lrSub_stateMachine +Description: This is the state machine for the linear regression sub menu. +@author - Brendan P. Beauchamp +@updated - 7/17/2020 +@param - lrSC *u + This is a structure which controls the state of the + linear regression sub menu state machine +@param - char dataSet[2330][5][20] + This is the dataset read from Dr. Bhuse's input file +@return - int u->userContinue + This variable states whether the user would like to + continue running +**********************************************************************/ +int lrSub_stateMachine(lrSC *u, char dataSet[2330][5][20]) +{ + switch(u->state) { + + case LR_PERFORM_REGRESSION : + //State Machine for choosing what to regress + lrSub_performRegression(dataSet); + break; + + case LR_ANALYZE_REGRESSION : + //State Machine for doing analysis on a member of the linked list + //FIXME + break; + + case LR_EXIT : + //Function for setting control structure to exit + lrSub_exit(u); + break; + + default : + //ERROR -> Exit state machine + printf("\nERROR: EXITING LINEAR REGRESSION\n"); + u->state = LR_EXIT; + break; + } + return u->userContinue; +} +/********************************************************************** +Name: lrSub_exit +Description: This is a function which sets parameters to exit the + linear regression sub menu +@author - Brendan P. Beauchamp +@updated - 7/17/2020 +@param - lrSC *u + This is a structure which controls the state of the + linear regression sub menu state machine +@return - void +**********************************************************************/ +void lrSub_exit(lrSC *u) +{ + u->state = LR_EXIT; + u->userContinue = 0; +} +/********************************************************************** +Name: lrSub_performRegression +Description: This function asks the user which columns of Dr. Bhuse's + file they would like to perform a regression on, and then + performs a linear regression on those two data sets. + After the regression is complete, its data is printed back + to the user. +@author - Brendan P. Beauchamp +@updated - 7/17/2020 +@param - char dataSet[2330][5][20] + This is the dataset read from Dr. Bhuse's input file +@return - void +**********************************************************************/ +void lrSub_performRegression(char dataSet[2330][5][20]) +{ + lrDP data; + data.nameXY = ""; + char* xDataType, yDataType; + + printf("Performing Linear Regression\n"); + printf("Y = aX + b\n"); + + //DataSet Options + printf("Options:\n"); + printf("0:\tDate\n"); + printf("1:\tSPY Put/Call Ratio\n"); + printf("2:\tSPY Put Volume\n"); + printf("3:\tSPY Call Volume\n"); + printf("4:\tTotal SPY Options Volume\n"); + + //Select X Data Set + data.xData = lrSub_selectData('X'); + xDataType = lrSub_dataName(data.xData); + + //Select Y Data Set + data.yData = lrSub_selectData('Y'); + yDataType = lrSub_dataName(data.yData); + + //Concatenate Name of Data Structure "xDataType,yDataType" + strcat(data.nameXY, xDataType); + strcat(data.nameXY, yDataType); + + //Select Columns to Regress + + + //Perform Regression + //FIXME *data.lrP = linearRegression(double x[], double y[], int size); + + //Add to List + //FIXME IMPLEMENT LIST + + //Print Vars + lrSub_printRegression(*data.lrP); +} +/********************************************************************** +Name:lrSub_dataName +Description: This function takes an input of an integer representing + a column in the input dataset, and returns a string which + represents that column's title. +@author - Brendan P. Beauchamp +@updated - 7/17/2020 +@param - int i + This is an integer representing which of the columns of + the data set has been selected +@return - char* ans + This represents the character format of the input value +**********************************************************************/ +char *lrSub_dataName(int i) +{ + char* ans; + + switch(i) { + + case DATE : + ans = "Date"; + break; + + case SPY_PUT_CALL_RATIO : + ans = "SPY Put Call Ratio"; + break; + + case SPY_PUT_VOLUME : + ans = "Spy Put Volume"; + break; + + case SPY_CALL_VOLUME : + ans = "SPY Call Volume"; + break; + + case TOTAL_SPY_OPTIONS_VOLUME : + ans = "Total SPY Options Volume"; + break; + + default : + ans = "Error"; + break; + } + return ans; +} +/********************************************************************** +Name: lrSub_selectData +Description: This is a helper function for scanning in the datasets for + X and Y. +@author - Brendan P. Beauchamp +@updated - 7/17/2020 +@param - char* var + This is a character either X or Y depending on which + variable in the regression is currently being scanned +@return - int ans + This is the user's choice for the column of the input + dataset to be selected. +**********************************************************************/ +int lrSub_selectData(char* var) +{ + int ans; + int invalid = 1; + + do { + printf("Select Data Set for%c\n", var); + + scanf("%d", &ans); + + //Answer is incorrect + if(ans < 0 || ans > 4 ) + { + printf("\nINVALID INPUT!\n"); + } else{ + invalid = 0; + } + }while(invalid); + + return ans; +} +#endif //FILESEPERATOR_SUBMENU_LINEARREGRESSION_H diff --git a/FileSeperator/SUBMENU_OutlierDetection.h b/FileSeperator/SUBMENU_OutlierDetection.h new file mode 100644 index 0000000..1b95762 --- /dev/null +++ b/FileSeperator/SUBMENU_OutlierDetection.h @@ -0,0 +1,10 @@ +/********************************************************************** +Name: +Description: +@author - +@updated - +**********************************************************************/ +#ifndef FILESEPERATOR_SUBMENU_OUTLIERDETECTION_H +#define FILESEPERATOR_SUBMENU_OUTLIERDETECTION_H + +#endif //FILESEPERATOR_SUBMENU_OUTLIERDETECTION_H diff --git a/FileSeperator/cmake-build-debug/CMakeCache.txt b/FileSeperator/cmake-build-debug/CMakeCache.txt index 337fd95..872931d 100644 --- a/FileSeperator/cmake-build-debug/CMakeCache.txt +++ b/FileSeperator/cmake-build-debug/CMakeCache.txt @@ -1,5 +1,5 @@ # This is the CMakeCache file. -# For build in directory: c:/Users/brent/CLionProjects/FileSeperator/cmake-build-debug +# For build in directory: c:/Users/brent/CLionProjects/FileSeperatorCopy/cmake-build-debug # It was generated by CMake: C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/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. @@ -181,10 +181,10 @@ CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE //Value Computed by CMake -FileSeperator_BINARY_DIR:STATIC=C:/Users/brent/CLionProjects/FileSeperator/cmake-build-debug +FileSeperator_BINARY_DIR:STATIC=C:/Users/brent/CLionProjects/FileSeperatorCopy/cmake-build-debug //Value Computed by CMake -FileSeperator_SOURCE_DIR:STATIC=C:/Users/brent/CLionProjects/FileSeperator +FileSeperator_SOURCE_DIR:STATIC=C:/Users/brent/CLionProjects/FileSeperatorCopy ######################## @@ -192,7 +192,7 @@ FileSeperator_SOURCE_DIR:STATIC=C:/Users/brent/CLionProjects/FileSeperator ######################## //This is the directory where this CMakeCache.txt was created -CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/brent/CLionProjects/FileSeperator/cmake-build-debug +CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/brent/CLionProjects/FileSeperatorCopy/cmake-build-debug //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 @@ -247,7 +247,7 @@ CMAKE_GENERATOR_PLATFORM:INTERNAL= CMAKE_GENERATOR_TOOLSET:INTERNAL= //Source directory with the top level CMakeLists.txt file for this // project -CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/brent/CLionProjects/FileSeperator +CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/brent/CLionProjects/FileSeperatorCopy //ADVANCED property for variable: CMAKE_LINKER CMAKE_LINKER-ADVANCED:INTERNAL=1 //ADVANCED property for variable: CMAKE_MAKE_PROGRAM diff --git a/FileSeperator/cmake-build-debug/CMakeFiles/3.16.5/CMakeDetermineCompilerABI_C.bin b/FileSeperator/cmake-build-debug/CMakeFiles/3.16.5/CMakeDetermineCompilerABI_C.bin index 38e78dc..e48a7ca 100644 Binary files a/FileSeperator/cmake-build-debug/CMakeFiles/3.16.5/CMakeDetermineCompilerABI_C.bin and b/FileSeperator/cmake-build-debug/CMakeFiles/3.16.5/CMakeDetermineCompilerABI_C.bin differ diff --git a/FileSeperator/cmake-build-debug/CMakeFiles/3.16.5/CompilerIdC/CMakeCCompilerId.exe b/FileSeperator/cmake-build-debug/CMakeFiles/3.16.5/CompilerIdC/CMakeCCompilerId.exe index 3b9d960..cb8cde6 100644 Binary files a/FileSeperator/cmake-build-debug/CMakeFiles/3.16.5/CompilerIdC/CMakeCCompilerId.exe and b/FileSeperator/cmake-build-debug/CMakeFiles/3.16.5/CompilerIdC/CMakeCCompilerId.exe differ diff --git a/FileSeperator/cmake-build-debug/CMakeFiles/3.16.5/CompilerIdC/CMakeCCompilerId.obj b/FileSeperator/cmake-build-debug/CMakeFiles/3.16.5/CompilerIdC/CMakeCCompilerId.obj index 112f5e8..8bb5ca7 100644 Binary files a/FileSeperator/cmake-build-debug/CMakeFiles/3.16.5/CompilerIdC/CMakeCCompilerId.obj and b/FileSeperator/cmake-build-debug/CMakeFiles/3.16.5/CompilerIdC/CMakeCCompilerId.obj differ diff --git a/FileSeperator/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake b/FileSeperator/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake index b3d26d8..af0cb37 100644 --- a/FileSeperator/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake +++ b/FileSeperator/cmake-build-debug/CMakeFiles/CMakeDirectoryInformation.cmake @@ -2,8 +2,8 @@ # Generated by "NMake Makefiles" Generator, CMake Version 3.16 # Relative path conversion top directories. -set(CMAKE_RELATIVE_PATH_TOP_SOURCE "C:/Users/brent/CLionProjects/FileSeperator") -set(CMAKE_RELATIVE_PATH_TOP_BINARY "C:/Users/brent/CLionProjects/FileSeperator/cmake-build-debug") +set(CMAKE_RELATIVE_PATH_TOP_SOURCE "C:/Users/brent/CLionProjects/FileSeperatorCopy") +set(CMAKE_RELATIVE_PATH_TOP_BINARY "C:/Users/brent/CLionProjects/FileSeperatorCopy/cmake-build-debug") # The C and CXX include file regular expressions for this directory. diff --git a/FileSeperator/cmake-build-debug/CMakeFiles/CMakeOutput.log b/FileSeperator/cmake-build-debug/CMakeFiles/CMakeOutput.log index 03ad369..a3f1cba 100644 --- a/FileSeperator/cmake-build-debug/CMakeFiles/CMakeOutput.log +++ b/FileSeperator/cmake-build-debug/CMakeFiles/CMakeOutput.log @@ -21,29 +21,29 @@ Compilation of the C compiler identification source "CMakeCCompilerId.c" produce Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.obj" -The C compiler identification is MSVC, found in "C:/Users/brent/CLionProjects/FileSeperator/cmake-build-debug/CMakeFiles/3.16.5/CompilerIdC/CMakeCCompilerId.exe" +The C compiler identification is MSVC, found in "C:/Users/brent/CLionProjects/FileSeperatorCopy/cmake-build-debug/CMakeFiles/3.16.5/CompilerIdC/CMakeCCompilerId.exe" Determining if the C compiler works passed with the following output: -Change Dir: C:/Users/brent/CLionProjects/FileSeperator/cmake-build-debug/CMakeFiles/CMakeTmp +Change Dir: C:/Users/brent/CLionProjects/FileSeperatorCopy/cmake-build-debug/CMakeFiles/CMakeTmp -Run Build Command(s):nmake /nologo cmTC_7d719\fast && "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.22.27905\bin\HostX86\x86\nmake.exe" -f CMakeFiles\cmTC_7d719.dir\build.make /nologo -L CMakeFiles\cmTC_7d719.dir\build -Building C object CMakeFiles/cmTC_7d719.dir/testCCompiler.c.obj - C:\PROGRA~2\MICROS~2\2019\BUILDT~1\VC\Tools\MSVC\1422~1.279\bin\Hostx86\x86\cl.exe @C:\Users\brent\AppData\Local\Temp\nm2854.tmp +Run Build Command(s):nmake /nologo cmTC_fd2a7\fast && "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.22.27905\bin\HostX86\x86\nmake.exe" -f CMakeFiles\cmTC_fd2a7.dir\build.make /nologo -L CMakeFiles\cmTC_fd2a7.dir\build +Building C object CMakeFiles/cmTC_fd2a7.dir/testCCompiler.c.obj + C:\PROGRA~2\MICROS~2\2019\BUILDT~1\VC\Tools\MSVC\1422~1.279\bin\Hostx86\x86\cl.exe @C:\Users\brent\AppData\Local\Temp\nmD87E.tmp testCCompiler.c -Linking C executable cmTC_7d719.exe - "C:\Program Files\JetBrains\CLion 2020.1.1\bin\cmake\win\bin\cmake.exe" -E vs_link_exe --intdir=CMakeFiles\cmTC_7d719.dir --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100183~1.0\x86\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100183~1.0\x86\mt.exe --manifests -- C:\PROGRA~2\MICROS~2\2019\BUILDT~1\VC\Tools\MSVC\1422~1.279\bin\Hostx86\x86\link.exe /nologo @CMakeFiles\cmTC_7d719.dir\objects1.rsp @C:\Users\brent\AppData\Local\Temp\nm29BC.tmp +Linking C executable cmTC_fd2a7.exe + "C:\Program Files\JetBrains\CLion 2020.1.1\bin\cmake\win\bin\cmake.exe" -E vs_link_exe --intdir=CMakeFiles\cmTC_fd2a7.dir --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100183~1.0\x86\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100183~1.0\x86\mt.exe --manifests -- C:\PROGRA~2\MICROS~2\2019\BUILDT~1\VC\Tools\MSVC\1422~1.279\bin\Hostx86\x86\link.exe /nologo @CMakeFiles\cmTC_fd2a7.dir\objects1.rsp @C:\Users\brent\AppData\Local\Temp\nmD9F6.tmp Detecting C compiler ABI info compiled with the following output: -Change Dir: C:/Users/brent/CLionProjects/FileSeperator/cmake-build-debug/CMakeFiles/CMakeTmp +Change Dir: C:/Users/brent/CLionProjects/FileSeperatorCopy/cmake-build-debug/CMakeFiles/CMakeTmp -Run Build Command(s):nmake /nologo cmTC_006e9\fast && "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.22.27905\bin\HostX86\x86\nmake.exe" -f CMakeFiles\cmTC_006e9.dir\build.make /nologo -L CMakeFiles\cmTC_006e9.dir\build -Building C object CMakeFiles/cmTC_006e9.dir/CMakeCCompilerABI.c.obj - C:\PROGRA~2\MICROS~2\2019\BUILDT~1\VC\Tools\MSVC\1422~1.279\bin\Hostx86\x86\cl.exe @C:\Users\brent\AppData\Local\Temp\nm2C8A.tmp +Run Build Command(s):nmake /nologo cmTC_e4c5c\fast && "C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\VC\Tools\MSVC\14.22.27905\bin\HostX86\x86\nmake.exe" -f CMakeFiles\cmTC_e4c5c.dir\build.make /nologo -L CMakeFiles\cmTC_e4c5c.dir\build +Building C object CMakeFiles/cmTC_e4c5c.dir/CMakeCCompilerABI.c.obj + C:\PROGRA~2\MICROS~2\2019\BUILDT~1\VC\Tools\MSVC\1422~1.279\bin\Hostx86\x86\cl.exe @C:\Users\brent\AppData\Local\Temp\nmDCD4.tmp CMakeCCompilerABI.c -Linking C executable cmTC_006e9.exe - "C:\Program Files\JetBrains\CLion 2020.1.1\bin\cmake\win\bin\cmake.exe" -E vs_link_exe --intdir=CMakeFiles\cmTC_006e9.dir --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100183~1.0\x86\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100183~1.0\x86\mt.exe --manifests -- C:\PROGRA~2\MICROS~2\2019\BUILDT~1\VC\Tools\MSVC\1422~1.279\bin\Hostx86\x86\link.exe /nologo @CMakeFiles\cmTC_006e9.dir\objects1.rsp @C:\Users\brent\AppData\Local\Temp\nm2CE9.tmp +Linking C executable cmTC_e4c5c.exe + "C:\Program Files\JetBrains\CLion 2020.1.1\bin\cmake\win\bin\cmake.exe" -E vs_link_exe --intdir=CMakeFiles\cmTC_e4c5c.dir --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100183~1.0\x86\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100183~1.0\x86\mt.exe --manifests -- C:\PROGRA~2\MICROS~2\2019\BUILDT~1\VC\Tools\MSVC\1422~1.279\bin\Hostx86\x86\link.exe /nologo @CMakeFiles\cmTC_e4c5c.dir\objects1.rsp @C:\Users\brent\AppData\Local\Temp\nmDD52.tmp diff --git a/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/C.includecache b/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/C.includecache index 4f61702..32918da 100644 --- a/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/C.includecache +++ b/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/C.includecache @@ -6,11 +6,59 @@ #IncludeRegexTransform: -C:/Users/brent/CLionProjects/FileSeperator/main.c +C:/Users/brent/CLionProjects/FileSeperatorCopy/dataHelper.h +globalDefinitions.h +C:/Users/brent/CLionProjects/FileSeperatorCopy/globalDefinitions.h +stdlib.h +- + +C:/Users/brent/CLionProjects/FileSeperatorCopy/fileHelper.h +stdio.h +- +string.h +- +dataHelper.h +C:/Users/brent/CLionProjects/FileSeperatorCopy/dataHelper.h + +C:/Users/brent/CLionProjects/FileSeperatorCopy/globalDefinitions.h + +C:/Users/brent/CLionProjects/FileSeperatorCopy/linearRegression.h +pythagoreanMeans.h +C:/Users/brent/CLionProjects/FileSeperatorCopy/pythagoreanMeans.h +usefulStats.h +C:/Users/brent/CLionProjects/FileSeperatorCopy/usefulStats.h + +C:/Users/brent/CLionProjects/FileSeperatorCopy/main.c stdio.h - string.h - +printHelper.h +C:/Users/brent/CLionProjects/FileSeperatorCopy/printHelper.h +fileHelper.h +C:/Users/brent/CLionProjects/FileSeperatorCopy/fileHelper.h +pythagoreanMeans.h +C:/Users/brent/CLionProjects/FileSeperatorCopy/pythagoreanMeans.h stdlib.h - +linearRegression.h +C:/Users/brent/CLionProjects/FileSeperatorCopy/linearRegression.h +usefulStats.h +C:/Users/brent/CLionProjects/FileSeperatorCopy/usefulStats.h +dataHelper.h +C:/Users/brent/CLionProjects/FileSeperatorCopy/dataHelper.h + +C:/Users/brent/CLionProjects/FileSeperatorCopy/printHelper.h +stdio.h +- +string.h +- + +C:/Users/brent/CLionProjects/FileSeperatorCopy/pythagoreanMeans.h +math.h +- + +C:/Users/brent/CLionProjects/FileSeperatorCopy/usefulStats.h +pythagoreanMeans.h +C:/Users/brent/CLionProjects/FileSeperatorCopy/pythagoreanMeans.h diff --git a/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/DependInfo.cmake b/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/DependInfo.cmake index cd2c2b5..f19da54 100644 --- a/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/DependInfo.cmake +++ b/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/DependInfo.cmake @@ -4,7 +4,7 @@ set(CMAKE_DEPENDS_LANGUAGES ) # The set of files for implicit dependencies of each language: set(CMAKE_DEPENDS_CHECK_C - "C:/Users/brent/CLionProjects/FileSeperator/main.c" "C:/Users/brent/CLionProjects/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/main.c.obj" + "C:/Users/brent/CLionProjects/FileSeperatorCopy/main.c" "C:/Users/brent/CLionProjects/FileSeperatorCopy/cmake-build-debug/CMakeFiles/FileSeperator.dir/main.c.obj" ) set(CMAKE_C_COMPILER_ID "MSVC") diff --git a/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/build.make b/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/build.make index 0eafda8..63d67d5 100644 --- a/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/build.make +++ b/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/build.make @@ -44,10 +44,10 @@ RM = "C:\Program Files\JetBrains\CLion 2020.1.1\bin\cmake\win\bin\cmake.exe" -E EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = C:\Users\brent\CLionProjects\FileSeperator +CMAKE_SOURCE_DIR = C:\Users\brent\CLionProjects\FileSeperatorCopy # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = C:\Users\brent\CLionProjects\FileSeperator\cmake-build-debug +CMAKE_BINARY_DIR = C:\Users\brent\CLionProjects\FileSeperatorCopy\cmake-build-debug # Include any dependencies generated for this target. include CMakeFiles\FileSeperator.dir\depend.make @@ -60,21 +60,21 @@ include CMakeFiles\FileSeperator.dir\flags.make CMakeFiles\FileSeperator.dir\main.c.obj: CMakeFiles\FileSeperator.dir\flags.make CMakeFiles\FileSeperator.dir\main.c.obj: ..\main.c - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\brent\CLionProjects\FileSeperator\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/FileSeperator.dir/main.c.obj" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=C:\Users\brent\CLionProjects\FileSeperatorCopy\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/FileSeperator.dir/main.c.obj" C:\PROGRA~2\MICROS~2\2019\BUILDT~1\VC\Tools\MSVC\1422~1.279\bin\Hostx86\x86\cl.exe @<< - /nologo $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) /FoCMakeFiles\FileSeperator.dir\main.c.obj /FdCMakeFiles\FileSeperator.dir\ /FS -c C:\Users\brent\CLionProjects\FileSeperator\main.c + /nologo $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) /FoCMakeFiles\FileSeperator.dir\main.c.obj /FdCMakeFiles\FileSeperator.dir\ /FS -c C:\Users\brent\CLionProjects\FileSeperatorCopy\main.c << CMakeFiles\FileSeperator.dir\main.c.i: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/FileSeperator.dir/main.c.i" C:\PROGRA~2\MICROS~2\2019\BUILDT~1\VC\Tools\MSVC\1422~1.279\bin\Hostx86\x86\cl.exe > CMakeFiles\FileSeperator.dir\main.c.i @<< - /nologo $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E C:\Users\brent\CLionProjects\FileSeperator\main.c + /nologo $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E C:\Users\brent\CLionProjects\FileSeperatorCopy\main.c << CMakeFiles\FileSeperator.dir\main.c.s: cmake_force @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/FileSeperator.dir/main.c.s" C:\PROGRA~2\MICROS~2\2019\BUILDT~1\VC\Tools\MSVC\1422~1.279\bin\Hostx86\x86\cl.exe @<< - /nologo $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) /FoNUL /FAs /FaCMakeFiles\FileSeperator.dir\main.c.s /c C:\Users\brent\CLionProjects\FileSeperator\main.c + /nologo $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) /FoNUL /FAs /FaCMakeFiles\FileSeperator.dir\main.c.s /c C:\Users\brent\CLionProjects\FileSeperatorCopy\main.c << # Object files for target FileSeperator @@ -87,9 +87,9 @@ FileSeperator_EXTERNAL_OBJECTS = FileSeperator.exe: CMakeFiles\FileSeperator.dir\main.c.obj FileSeperator.exe: CMakeFiles\FileSeperator.dir\build.make FileSeperator.exe: CMakeFiles\FileSeperator.dir\objects1.rsp - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=C:\Users\brent\CLionProjects\FileSeperator\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable FileSeperator.exe" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=C:\Users\brent\CLionProjects\FileSeperatorCopy\cmake-build-debug\CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking C executable FileSeperator.exe" "C:\Program Files\JetBrains\CLion 2020.1.1\bin\cmake\win\bin\cmake.exe" -E vs_link_exe --intdir=CMakeFiles\FileSeperator.dir --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100183~1.0\x86\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100183~1.0\x86\mt.exe --manifests -- C:\PROGRA~2\MICROS~2\2019\BUILDT~1\VC\Tools\MSVC\1422~1.279\bin\Hostx86\x86\link.exe /nologo @CMakeFiles\FileSeperator.dir\objects1.rsp @<< - /out:FileSeperator.exe /implib:FileSeperator.lib /pdb:C:\Users\brent\CLionProjects\FileSeperator\cmake-build-debug\FileSeperator.pdb /version:0.0 /machine:X86 /debug /INCREMENTAL /subsystem:console kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib + /out:FileSeperator.exe /implib:FileSeperator.lib /pdb:C:\Users\brent\CLionProjects\FileSeperatorCopy\cmake-build-debug\FileSeperator.pdb /version:0.0 /machine:X86 /debug /INCREMENTAL /subsystem:console kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib << # Rule to build all files generated by this target. @@ -102,6 +102,6 @@ CMakeFiles\FileSeperator.dir\clean: .PHONY : CMakeFiles\FileSeperator.dir\clean CMakeFiles\FileSeperator.dir\depend: - $(CMAKE_COMMAND) -E cmake_depends "NMake Makefiles" C:\Users\brent\CLionProjects\FileSeperator C:\Users\brent\CLionProjects\FileSeperator C:\Users\brent\CLionProjects\FileSeperator\cmake-build-debug C:\Users\brent\CLionProjects\FileSeperator\cmake-build-debug C:\Users\brent\CLionProjects\FileSeperator\cmake-build-debug\CMakeFiles\FileSeperator.dir\DependInfo.cmake --color=$(COLOR) + $(CMAKE_COMMAND) -E cmake_depends "NMake Makefiles" C:\Users\brent\CLionProjects\FileSeperatorCopy C:\Users\brent\CLionProjects\FileSeperatorCopy C:\Users\brent\CLionProjects\FileSeperatorCopy\cmake-build-debug C:\Users\brent\CLionProjects\FileSeperatorCopy\cmake-build-debug C:\Users\brent\CLionProjects\FileSeperatorCopy\cmake-build-debug\CMakeFiles\FileSeperator.dir\DependInfo.cmake --color=$(COLOR) .PHONY : CMakeFiles\FileSeperator.dir\depend diff --git a/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/depend.internal b/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/depend.internal index 6032e7b..e757ced 100644 --- a/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/depend.internal +++ b/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/depend.internal @@ -2,4 +2,11 @@ # Generated by "NMake Makefiles" Generator, CMake Version 3.16 CMakeFiles/FileSeperator.dir/main.c.obj - C:/Users/brent/CLionProjects/FileSeperator/main.c + C:/Users/brent/CLionProjects/FileSeperatorCopy/dataHelper.h + C:/Users/brent/CLionProjects/FileSeperatorCopy/fileHelper.h + C:/Users/brent/CLionProjects/FileSeperatorCopy/globalDefinitions.h + C:/Users/brent/CLionProjects/FileSeperatorCopy/linearRegression.h + C:/Users/brent/CLionProjects/FileSeperatorCopy/main.c + C:/Users/brent/CLionProjects/FileSeperatorCopy/printHelper.h + C:/Users/brent/CLionProjects/FileSeperatorCopy/pythagoreanMeans.h + C:/Users/brent/CLionProjects/FileSeperatorCopy/usefulStats.h diff --git a/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/depend.make b/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/depend.make index b19da62..45e65b5 100644 --- a/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/depend.make +++ b/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/depend.make @@ -1,5 +1,12 @@ # CMAKE generated file: DO NOT EDIT! # Generated by "NMake Makefiles" Generator, CMake Version 3.16 +CMakeFiles\FileSeperator.dir\main.c.obj: ..\dataHelper.h +CMakeFiles\FileSeperator.dir\main.c.obj: ..\fileHelper.h +CMakeFiles\FileSeperator.dir\main.c.obj: ..\globalDefinitions.h +CMakeFiles\FileSeperator.dir\main.c.obj: ..\linearRegression.h CMakeFiles\FileSeperator.dir\main.c.obj: ..\main.c +CMakeFiles\FileSeperator.dir\main.c.obj: ..\printHelper.h +CMakeFiles\FileSeperator.dir\main.c.obj: ..\pythagoreanMeans.h +CMakeFiles\FileSeperator.dir\main.c.obj: ..\usefulStats.h diff --git a/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/main.c.obj b/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/main.c.obj index ba0b6f7..9d55630 100644 Binary files a/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/main.c.obj and b/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/main.c.obj differ diff --git a/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/manifest.rc b/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/manifest.rc index bf4a4ee..79d0d9f 100644 --- a/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/manifest.rc +++ b/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/manifest.rc @@ -1,2 +1,2 @@ #pragma code_page(65001) -1 /* CREATEPROCESS_MANIFEST_RESOURCE_ID */ 24 /* RT_MANIFEST */ "C:/Users/brent/CLionProjects/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/embed.manifest" \ No newline at end of file +1 /* CREATEPROCESS_MANIFEST_RESOURCE_ID */ 24 /* RT_MANIFEST */ "C:/Users/brent/CLionProjects/FileSeperatorCopy/cmake-build-debug/CMakeFiles/FileSeperator.dir/embed.manifest" \ No newline at end of file diff --git a/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/vc140.pdb b/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/vc140.pdb index fea2aef..14c4a73 100644 Binary files a/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/vc140.pdb and b/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir/vc140.pdb differ diff --git a/FileSeperator/cmake-build-debug/CMakeFiles/Makefile.cmake b/FileSeperator/cmake-build-debug/CMakeFiles/Makefile.cmake index cf88f72..82acd95 100644 --- a/FileSeperator/cmake-build-debug/CMakeFiles/Makefile.cmake +++ b/FileSeperator/cmake-build-debug/CMakeFiles/Makefile.cmake @@ -7,70 +7,17 @@ set(CMAKE_DEPENDS_GENERATOR "NMake Makefiles") # The top level Makefile was generated from the following files: set(CMAKE_MAKEFILE_DEPENDS "CMakeCache.txt" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeCCompiler.cmake.in" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeCCompilerABI.c" "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeCInformation.cmake" "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeCommonLanguageInclude.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeCompilerIdDetection.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeDetermineCCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeDetermineCompileFeatures.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeDetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeDetermineCompilerABI.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeDetermineCompilerId.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeDetermineRCCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeDetermineSystem.cmake" "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeFindBinUtils.cmake" "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeFindCodeBlocks.cmake" "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeGenericSystem.cmake" "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeInitializeConfigs.cmake" "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeLanguageInformation.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeNMakeFindMake.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeParseImplicitIncludeInfo.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeParseImplicitLinkInfo.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeRCCompiler.cmake.in" "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeRCInformation.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeSystem.cmake.in" "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeSystemSpecificInformation.cmake" "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeSystemSpecificInitialize.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeTestCCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeTestCompilerCommon.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/CMakeTestRCCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/ADSP-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/ARMCC-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/ARMClang-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/AppleClang-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/Borland-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/Bruce-C-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/Clang-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/Clang-DetermineCompilerInternal.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/Compaq-C-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/Cray-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/Embarcadero-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/Fujitsu-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/GHS-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/GNU-C-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/HP-C-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/IAR-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/Intel-DetermineCompiler.cmake" "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/MSVC-C.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/MSVC-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/NVIDIA-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/PGI-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/PathScale-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/SCO-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/SDCC-C-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/SunPro-C-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/TI-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/Watcom-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/XL-C-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/XLClang-C-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Compiler/zOS-C-DetermineCompiler.cmake" - "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Internal/FeatureTesting.cmake" "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Platform/Windows-MSVC-C.cmake" "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Platform/Windows-MSVC.cmake" "C:/Program Files/JetBrains/CLion 2020.1.1/bin/cmake/win/share/cmake-3.16/Modules/Platform/Windows.cmake" @@ -90,10 +37,6 @@ set(CMAKE_MAKEFILE_OUTPUTS # Byproducts of CMake generate step: set(CMAKE_MAKEFILE_PRODUCTS - "CMakeFiles/3.16.5/CMakeSystem.cmake" - "CMakeFiles/3.16.5/CMakeCCompiler.cmake" - "CMakeFiles/3.16.5/CMakeRCCompiler.cmake" - "CMakeFiles/3.16.5/CMakeCCompiler.cmake" "CMakeFiles/CMakeDirectoryInformation.cmake" ) diff --git a/FileSeperator/cmake-build-debug/CMakeFiles/Makefile2 b/FileSeperator/cmake-build-debug/CMakeFiles/Makefile2 index 87954c7..5c568b1 100644 --- a/FileSeperator/cmake-build-debug/CMakeFiles/Makefile2 +++ b/FileSeperator/cmake-build-debug/CMakeFiles/Makefile2 @@ -45,10 +45,10 @@ RM = "C:\Program Files\JetBrains\CLion 2020.1.1\bin\cmake\win\bin\cmake.exe" -E EQUALS = = # The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = C:\Users\brent\CLionProjects\FileSeperator +CMAKE_SOURCE_DIR = C:\Users\brent\CLionProjects\FileSeperatorCopy # The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = C:\Users\brent\CLionProjects\FileSeperator\cmake-build-debug +CMAKE_BINARY_DIR = C:\Users\brent\CLionProjects\FileSeperatorCopy\cmake-build-debug #============================================================================= # Directory level rules for the build root directory @@ -75,14 +75,14 @@ clean: CMakeFiles\FileSeperator.dir\clean CMakeFiles\FileSeperator.dir\all: $(MAKE) -f CMakeFiles\FileSeperator.dir\build.make /nologo -$(MAKEFLAGS) CMakeFiles\FileSeperator.dir\depend $(MAKE) -f CMakeFiles\FileSeperator.dir\build.make /nologo -$(MAKEFLAGS) CMakeFiles\FileSeperator.dir\build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=C:\Users\brent\CLionProjects\FileSeperator\cmake-build-debug\CMakeFiles --progress-num=1,2 "Built target FileSeperator" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=C:\Users\brent\CLionProjects\FileSeperatorCopy\cmake-build-debug\CMakeFiles --progress-num=1,2 "Built target FileSeperator" .PHONY : CMakeFiles\FileSeperator.dir\all # Build rule for subdir invocation for target. CMakeFiles\FileSeperator.dir\rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start C:\Users\brent\CLionProjects\FileSeperator\cmake-build-debug\CMakeFiles 2 + $(CMAKE_COMMAND) -E cmake_progress_start C:\Users\brent\CLionProjects\FileSeperatorCopy\cmake-build-debug\CMakeFiles 2 $(MAKE) -f CMakeFiles\Makefile2 /nologo -$(MAKEFLAGS) CMakeFiles\FileSeperator.dir\all - $(CMAKE_COMMAND) -E cmake_progress_start C:\Users\brent\CLionProjects\FileSeperator\cmake-build-debug\CMakeFiles 0 + $(CMAKE_COMMAND) -E cmake_progress_start C:\Users\brent\CLionProjects\FileSeperatorCopy\cmake-build-debug\CMakeFiles 0 .PHONY : CMakeFiles\FileSeperator.dir\rule # Convenience name for target. diff --git a/FileSeperator/cmake-build-debug/CMakeFiles/TargetDirectories.txt b/FileSeperator/cmake-build-debug/CMakeFiles/TargetDirectories.txt index 222bbe5..5ec2801 100644 --- a/FileSeperator/cmake-build-debug/CMakeFiles/TargetDirectories.txt +++ b/FileSeperator/cmake-build-debug/CMakeFiles/TargetDirectories.txt @@ -1,3 +1,3 @@ -C:/Users/brent/CLionProjects/FileSeperator/cmake-build-debug/CMakeFiles/FileSeperator.dir -C:/Users/brent/CLionProjects/FileSeperator/cmake-build-debug/CMakeFiles/edit_cache.dir -C:/Users/brent/CLionProjects/FileSeperator/cmake-build-debug/CMakeFiles/rebuild_cache.dir +C:/Users/brent/CLionProjects/FileSeperatorCopy/cmake-build-debug/CMakeFiles/FileSeperator.dir +C:/Users/brent/CLionProjects/FileSeperatorCopy/cmake-build-debug/CMakeFiles/edit_cache.dir +C:/Users/brent/CLionProjects/FileSeperatorCopy/cmake-build-debug/CMakeFiles/rebuild_cache.dir diff --git a/FileSeperator/cmake-build-debug/CMakeFiles/clion-log.txt b/FileSeperator/cmake-build-debug/CMakeFiles/clion-log.txt index 81531c6..eb6079d 100644 --- a/FileSeperator/cmake-build-debug/CMakeFiles/clion-log.txt +++ b/FileSeperator/cmake-build-debug/CMakeFiles/clion-log.txt @@ -1,11 +1,4 @@ -"C:\Program Files\JetBrains\CLion 2020.1.1\bin\cmake\win\bin\cmake.exe" -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - NMake Makefiles" C:\Users\brent\CLionProjects\FileSeperator --- The C compiler identification is MSVC 19.22.27905.0 --- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.22.27905/bin/Hostx86/x86/cl.exe --- Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2019/BuildTools/VC/Tools/MSVC/14.22.27905/bin/Hostx86/x86/cl.exe -- works --- Detecting C compiler ABI info --- Detecting C compiler ABI info - done --- Detecting C compile features --- Detecting C compile features - done +"C:\Program Files\JetBrains\CLion 2020.1.1\bin\cmake\win\bin\cmake.exe" -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - NMake Makefiles" C:\Users\brent\CLionProjects\FileSeperatorCopy -- Configuring done -- Generating done --- Build files have been written to: C:/Users/brent/CLionProjects/FileSeperator/cmake-build-debug +-- Build files have been written to: C:/Users/brent/CLionProjects/FileSeperatorCopy/cmake-build-debug diff --git a/FileSeperator/cmake-build-debug/FileSeperator.cbp b/FileSeperator/cmake-build-debug/FileSeperator.cbp index e2f2105..d011216 100644 --- a/FileSeperator/cmake-build-debug/FileSeperator.cbp +++ b/FileSeperator/cmake-build-debug/FileSeperator.cbp @@ -8,18 +8,18 @@