mirror of
https://github.com/BreizhHardware/projetCGroupe8.git
synced 2026-03-18 21:30:32 +01:00
Fix all of the memory leaks and creation of the WriteFileStop function who did not check if the ready file exist
This commit is contained in:
@@ -1,11 +1,6 @@
|
||||
#define LENGTH 12600
|
||||
#define NUMBER_OF_CHAR 500000
|
||||
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
#include <time.h>
|
||||
|
||||
#include "Movie.h"
|
||||
#include "Filmotheque.h"
|
||||
#include "NodeTrie.h"
|
||||
@@ -100,13 +95,15 @@ void initFilmo(char* nameFile,struct List* table,struct Filmotheque* filmo){
|
||||
char line[NUMBER_OF_CHAR];
|
||||
|
||||
while(fgets(line,sizeof(line),fichier) != NULL){
|
||||
char* director = toLower((strtok(line, ";")));
|
||||
char* director = (strtok(line, ";"));
|
||||
toLowercase(director);
|
||||
char* name = strtok(NULL, ";");
|
||||
char* time = strtok(NULL, ";");
|
||||
char* category = strtok(NULL, ";");
|
||||
//Remove the \r\n at the end of the line
|
||||
category[strlen(category) - 2] = '\0';
|
||||
struct Movie* movie = createMovie(director, name, time,category);
|
||||
free(director);
|
||||
addMovieInTable(table,movie);
|
||||
addMovie(filmo,movie);
|
||||
}
|
||||
@@ -175,22 +172,11 @@ struct List* searchByFilm(struct List* table[LENGTH], char* name){
|
||||
}
|
||||
|
||||
|
||||
char* toLower(char* name){
|
||||
int length = strlen(name);
|
||||
char* lower = malloc(sizeof(char) * (length + 1));
|
||||
if (lower == NULL) {
|
||||
printf("error malloc");
|
||||
return NULL;
|
||||
void toLowercase(char* str) {
|
||||
int i;
|
||||
for (i = 0; str[i] != '\0'; i++) {
|
||||
str[i] = tolower(str[i]);
|
||||
}
|
||||
for (int i = 0; i < length; i++) {
|
||||
if (name[i] >= 'A' && name[i] <= 'Z') {
|
||||
lower[i] = name[i] + 32;
|
||||
} else {
|
||||
lower[i] = name[i];
|
||||
}
|
||||
}
|
||||
lower[length] = '\0';
|
||||
return lower;
|
||||
}
|
||||
|
||||
struct List* searchRealMostMovie(struct Filmotheque* filmo){
|
||||
@@ -219,9 +205,11 @@ int readRequest(char* request, struct List* tableau[LENGTH], struct Filmotheque*
|
||||
fonction = strtok(line, ";");
|
||||
argument = strtok(NULL, ";");
|
||||
}
|
||||
printf("\nfonction : %s\n", fonction);
|
||||
printf("argument : %s\n", argument);
|
||||
if (strcmp(fonction, "searchByDirector") == 0) {
|
||||
clock_t start;
|
||||
argument = toLower(argument);
|
||||
toLowercase(argument);
|
||||
start = clock();
|
||||
struct List* result = searchByDirector(filmo, argument);
|
||||
start = clock() - start;
|
||||
@@ -232,6 +220,7 @@ int readRequest(char* request, struct List* tableau[LENGTH], struct Filmotheque*
|
||||
delay(2);
|
||||
printf("\nend of the delay\n");
|
||||
deleteFile();
|
||||
free(argument);
|
||||
return 0;
|
||||
}
|
||||
else if (strcmp(fonction, "searchByTime") == 0) {
|
||||
@@ -277,27 +266,14 @@ int readRequest(char* request, struct List* tableau[LENGTH], struct Filmotheque*
|
||||
return 8;
|
||||
}
|
||||
}
|
||||
/*
|
||||
if(fonction == 'searchByCategorie'){
|
||||
return searchByCategorie(var);
|
||||
}
|
||||
if(fonction == 'searchByFilm'){
|
||||
return searchByFilm(var);
|
||||
}
|
||||
}
|
||||
*/
|
||||
//verifier si le fichier est la faire une boucle et a l'aide d'un fopen() quand on y a acces le fichier est alors present
|
||||
|
||||
void deleteFilmotheque(struct Filmotheque* filmotheque, struct List* table[LENGTH]){
|
||||
//Delete all the sub tree from the trie filmotheque->director
|
||||
deleteNodeTrie(filmotheque->director);
|
||||
/*
|
||||
|
||||
free(filmotheque->directorMax);
|
||||
for(int i = 0; i < LENGTH; i++){
|
||||
if(table[i] != NULL){
|
||||
deleteList(table[i]);
|
||||
}
|
||||
deleteList(&table[i]);
|
||||
}
|
||||
*/
|
||||
deleteNodeTrie(&filmotheque->director);
|
||||
free(filmotheque);
|
||||
}
|
||||
|
||||
|
||||
@@ -5,6 +5,9 @@
|
||||
#include <stdbool.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
#include <ctype.h>
|
||||
|
||||
struct Filmotheque{
|
||||
char* directorMax;
|
||||
@@ -12,8 +15,6 @@ struct Filmotheque{
|
||||
struct NodeTrie* director;
|
||||
};
|
||||
|
||||
char* toLower(char* name);
|
||||
|
||||
struct Filmotheque* createEmptyFilmo();
|
||||
|
||||
void initFilmo(char* nameFile,struct List* table,struct Filmotheque* filmo);
|
||||
@@ -32,6 +33,10 @@ struct List* searchByFilm(struct List* table[LENGTH], char* name);
|
||||
|
||||
void deleteFilmotheque(struct Filmotheque* filmotheque, struct List* table[LENGTH]);
|
||||
|
||||
void toLowercase(char* str);
|
||||
|
||||
struct List* searchRealMostMovie(struct Filmotheque* filmo);
|
||||
|
||||
int readRequest(char* request, struct List* tableau[LENGTH],struct Filmotheque* filmo);
|
||||
|
||||
void printResultInFile(struct List* result, double time);
|
||||
|
||||
@@ -39,26 +39,30 @@ void addFirst(struct List* l,struct Movie* movie){
|
||||
|
||||
|
||||
void deleteFirst(struct List* l) {
|
||||
if (isCellEmpty(l->head)) {
|
||||
return;
|
||||
}
|
||||
struct Cell *next = l->head->next;
|
||||
free(l->head);
|
||||
l->head = next;
|
||||
struct Cell* CellToDelete = l->head;
|
||||
l->head = l->head->next;
|
||||
l->size--;
|
||||
deleteMovie(CellToDelete->movie);
|
||||
free(CellToDelete);
|
||||
CellToDelete = NULL;
|
||||
}
|
||||
|
||||
unsigned int listSize(struct List* l){
|
||||
if(l == NULL){
|
||||
return 0;
|
||||
}
|
||||
return l->size;
|
||||
}
|
||||
|
||||
void deleteList(struct List** l){
|
||||
//Use isCellEmpty to check if the cell is empty
|
||||
while(!isCellEmpty((*l)->head)){
|
||||
if(*l == NULL){
|
||||
return;
|
||||
}
|
||||
unsigned int size = listSize(*l);
|
||||
for(unsigned int i = 0; i < size; i++){
|
||||
deleteFirst(*l);
|
||||
}
|
||||
free(*l);
|
||||
*l = NULL;
|
||||
}
|
||||
|
||||
bool isCellEmpty(struct Cell* c){
|
||||
|
||||
@@ -25,10 +25,9 @@ void deleteNodeTrie(struct NodeTrie** trie){
|
||||
for(int i = 0; i<MAX_LETTERS; i++){
|
||||
if((*trie)->children[i]!=NULL){
|
||||
deleteNodeTrie(&(*trie)->children[i]);
|
||||
//Delete the list of movies
|
||||
//deleteList(&(*trie)->movie);
|
||||
}
|
||||
}
|
||||
deleteList(&(*trie)->movie);
|
||||
free(*trie);
|
||||
*trie = NULL;
|
||||
}
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,406 +0,0 @@
|
||||
{
|
||||
"inputs" :
|
||||
[
|
||||
{
|
||||
"path" : "CMakeLists.txt"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeDetermineSystem.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeSystem.cmake.in"
|
||||
},
|
||||
{
|
||||
"isGenerated" : true,
|
||||
"path" : "cmake-build-debug/CMakeFiles/3.18.4/CMakeSystem.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeUnixFindMake.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeSystemSpecificInitialize.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeDetermineCCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeDetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeDetermineCompilerId.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeCompilerIdDetection.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/ADSP-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/ARMCC-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/ARMClang-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/AppleClang-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/Borland-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/Bruce-C-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/Clang-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/Clang-DetermineCompilerInternal.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/Compaq-C-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/Cray-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/Embarcadero-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/Fujitsu-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/GHS-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/GNU-C-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/HP-C-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/IAR-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/Intel-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/MSVC-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/NVIDIA-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/PGI-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/PathScale-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/SCO-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/SDCC-C-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/SunPro-C-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/TI-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/Watcom-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/XL-C-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/XLClang-C-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/zOS-C-DetermineCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeFindBinUtils.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/GNU-FindBinUtils.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeCCompiler.cmake.in"
|
||||
},
|
||||
{
|
||||
"isGenerated" : true,
|
||||
"path" : "cmake-build-debug/CMakeFiles/3.18.4/CMakeCCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeSystemSpecificInformation.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeGenericSystem.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeInitializeConfigs.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Platform/Linux.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Platform/UnixPaths.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeFindCodeBlocks.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeExtraGeneratorDetermineCompilerMacrosAndIncludeDirs.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/ProcessorCount.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeCInformation.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeLanguageInformation.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/GNU-C.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/GNU.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Compiler/CMakeCommonCompilerMacros.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Internal/CMakeCheckCompilerFlag.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeCheckCompilerFlagCommonPatterns.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Platform/Linux-GNU-C.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Platform/Linux-GNU.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeCommonLanguageInclude.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeTestCCompiler.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeTestCompilerCommon.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeDetermineCompilerABI.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeParseImplicitIncludeInfo.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeParseImplicitLinkInfo.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeTestCompilerCommon.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeDetermineCompileFeatures.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/Internal/FeatureTesting.cmake"
|
||||
},
|
||||
{
|
||||
"isCMake" : true,
|
||||
"isExternal" : true,
|
||||
"path" : "/usr/share/cmake-3.18/Modules/CMakeCCompiler.cmake.in"
|
||||
},
|
||||
{
|
||||
"isGenerated" : true,
|
||||
"path" : "cmake-build-debug/CMakeFiles/3.18.4/CMakeCCompiler.cmake"
|
||||
}
|
||||
],
|
||||
"kind" : "cmakeFiles",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug",
|
||||
"source" : "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd"
|
||||
},
|
||||
"version" :
|
||||
{
|
||||
"major" : 1,
|
||||
"minor" : 0
|
||||
}
|
||||
}
|
||||
@@ -1,59 +0,0 @@
|
||||
{
|
||||
"configurations" :
|
||||
[
|
||||
{
|
||||
"directories" :
|
||||
[
|
||||
{
|
||||
"build" : ".",
|
||||
"minimumCMakeVersion" :
|
||||
{
|
||||
"string" : "3.7"
|
||||
},
|
||||
"projectIndex" : 0,
|
||||
"source" : ".",
|
||||
"targetIndexes" :
|
||||
[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"name" : "Debug",
|
||||
"projects" :
|
||||
[
|
||||
{
|
||||
"directoryIndexes" :
|
||||
[
|
||||
0
|
||||
],
|
||||
"name" : "untitled",
|
||||
"targetIndexes" :
|
||||
[
|
||||
0
|
||||
]
|
||||
}
|
||||
],
|
||||
"targets" :
|
||||
[
|
||||
{
|
||||
"directoryIndex" : 0,
|
||||
"id" : "untitled::@6890427a1f51a3e7e1df",
|
||||
"jsonFile" : "target-untitled-Debug-0a793ea3d7a2a03087bf.json",
|
||||
"name" : "untitled",
|
||||
"projectIndex" : 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"kind" : "codemodel",
|
||||
"paths" :
|
||||
{
|
||||
"build" : "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug",
|
||||
"source" : "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd"
|
||||
},
|
||||
"version" :
|
||||
{
|
||||
"major" : 2,
|
||||
"minor" : 1
|
||||
}
|
||||
}
|
||||
@@ -1,93 +0,0 @@
|
||||
{
|
||||
"cmake" :
|
||||
{
|
||||
"generator" :
|
||||
{
|
||||
"multiConfig" : false,
|
||||
"name" : "Unix Makefiles"
|
||||
},
|
||||
"paths" :
|
||||
{
|
||||
"cmake" : "/usr/bin/cmake",
|
||||
"cpack" : "/usr/bin/cpack",
|
||||
"ctest" : "/usr/bin/ctest",
|
||||
"root" : "/usr/share/cmake-3.18"
|
||||
},
|
||||
"version" :
|
||||
{
|
||||
"isDirty" : false,
|
||||
"major" : 3,
|
||||
"minor" : 18,
|
||||
"patch" : 4,
|
||||
"string" : "3.18.4",
|
||||
"suffix" : ""
|
||||
}
|
||||
},
|
||||
"objects" :
|
||||
[
|
||||
{
|
||||
"jsonFile" : "codemodel-v2-5432de7fd8dbee1dbc14.json",
|
||||
"kind" : "codemodel",
|
||||
"version" :
|
||||
{
|
||||
"major" : 2,
|
||||
"minor" : 1
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonFile" : "cache-v2-d77da2abc14a88788d2b.json",
|
||||
"kind" : "cache",
|
||||
"version" :
|
||||
{
|
||||
"major" : 2,
|
||||
"minor" : 0
|
||||
}
|
||||
},
|
||||
{
|
||||
"jsonFile" : "cmakeFiles-v1-79095dfb38875bec3325.json",
|
||||
"kind" : "cmakeFiles",
|
||||
"version" :
|
||||
{
|
||||
"major" : 1,
|
||||
"minor" : 0
|
||||
}
|
||||
}
|
||||
],
|
||||
"reply" :
|
||||
{
|
||||
"cache-v2" :
|
||||
{
|
||||
"jsonFile" : "cache-v2-d77da2abc14a88788d2b.json",
|
||||
"kind" : "cache",
|
||||
"version" :
|
||||
{
|
||||
"major" : 2,
|
||||
"minor" : 0
|
||||
}
|
||||
},
|
||||
"cmakeFiles-v1" :
|
||||
{
|
||||
"jsonFile" : "cmakeFiles-v1-79095dfb38875bec3325.json",
|
||||
"kind" : "cmakeFiles",
|
||||
"version" :
|
||||
{
|
||||
"major" : 1,
|
||||
"minor" : 0
|
||||
}
|
||||
},
|
||||
"codemodel-v2" :
|
||||
{
|
||||
"jsonFile" : "codemodel-v2-5432de7fd8dbee1dbc14.json",
|
||||
"kind" : "codemodel",
|
||||
"version" :
|
||||
{
|
||||
"major" : 2,
|
||||
"minor" : 1
|
||||
}
|
||||
},
|
||||
"toolchains-v1" :
|
||||
{
|
||||
"error" : "unknown query file"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
# This is the CMakeCache file.
|
||||
# For build in directory: /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug
|
||||
# For build in directory: /mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug
|
||||
# It was generated by CMake: /usr/bin/cmake
|
||||
# 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.
|
||||
@@ -33,7 +33,7 @@ CMAKE_CODEBLOCKS_EXECUTABLE:FILEPATH=CMAKE_CODEBLOCKS_EXECUTABLE-NOTFOUND
|
||||
|
||||
//Additional command line arguments when CodeBlocks invokes make.
|
||||
// Enter e.g. -j<some_number> to get parallel builds
|
||||
CMAKE_CODEBLOCKS_MAKE_ARGUMENTS:STRING=-j16
|
||||
CMAKE_CODEBLOCKS_MAKE_ARGUMENTS:STRING=-j12
|
||||
|
||||
//Enable/Disable color output during build.
|
||||
CMAKE_COLOR_MAKEFILE:BOOL=ON
|
||||
@@ -201,10 +201,10 @@ ProcessorCount_cmd_nproc:FILEPATH=/usr/bin/nproc
|
||||
ProcessorCount_cmd_sysctl:FILEPATH=/usr/sbin/sysctl
|
||||
|
||||
//Value Computed by CMake
|
||||
untitled_BINARY_DIR:STATIC=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug
|
||||
untitled_BINARY_DIR:STATIC=/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug
|
||||
|
||||
//Value Computed by CMake
|
||||
untitled_SOURCE_DIR:STATIC=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd
|
||||
untitled_SOURCE_DIR:STATIC=/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd
|
||||
|
||||
|
||||
########################
|
||||
@@ -216,7 +216,7 @@ CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_AR
|
||||
CMAKE_AR-ADVANCED:INTERNAL=1
|
||||
//This is the directory where this CMakeCache.txt was created
|
||||
CMAKE_CACHEFILE_DIR:INTERNAL=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug
|
||||
CMAKE_CACHEFILE_DIR:INTERNAL=/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/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
|
||||
@@ -279,7 +279,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=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd
|
||||
CMAKE_HOME_DIRECTORY:INTERNAL=/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd
|
||||
//Install .so files without execute permission.
|
||||
CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1
|
||||
//ADVANCED property for variable: CMAKE_LINKER
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.18
|
||||
|
||||
# Relative path conversion top directories.
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd")
|
||||
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug")
|
||||
|
||||
# Force unix paths in dependencies.
|
||||
set(CMAKE_FORCE_UNIX_PATHS 1)
|
||||
|
||||
@@ -10,17 +10,15 @@ The output was:
|
||||
|
||||
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
|
||||
|
||||
The C compiler identification is GNU, found in "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/3.18.4/CompilerIdC/a.out"
|
||||
The C compiler identification is GNU, found in "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/3.18.4/CompilerIdC/a.out"
|
||||
|
||||
Detecting C compiler ABI info compiled with the following output:
|
||||
Change Dir: /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp
|
||||
Change Dir: /mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp
|
||||
|
||||
Run Build Command(s):/usr/bin/gmake cmTC_35bd2/fast && gmake: Warning: File 'Makefile' has modification time 4458 s in the future
|
||||
/usr/bin/gmake -f CMakeFiles/cmTC_35bd2.dir/build.make CMakeFiles/cmTC_35bd2.dir/build
|
||||
gmake[1]: Entering directory '/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp'
|
||||
gmake[1]: Warning: File 'CMakeFiles/cmTC_35bd2.dir/flags.make' has modification time 4458 s in the future
|
||||
Building C object CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o
|
||||
/usr/bin/cc -v -o CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c
|
||||
Run Build Command(s):/usr/bin/gmake cmTC_9c7e8/fast && /usr/bin/gmake -f CMakeFiles/cmTC_9c7e8.dir/build.make CMakeFiles/cmTC_9c7e8.dir/build
|
||||
gmake[1]: Entering directory '/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp'
|
||||
Building C object CMakeFiles/cmTC_9c7e8.dir/CMakeCCompilerABI.c.o
|
||||
/usr/bin/cc -v -o CMakeFiles/cmTC_9c7e8.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c
|
||||
Using built-in specs.
|
||||
COLLECT_GCC=/usr/bin/cc
|
||||
OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa:hsa
|
||||
@@ -30,8 +28,8 @@ Configured with: ../src/configure -v --with-pkgversion='Debian 10.2.1-6' --with-
|
||||
Thread model: posix
|
||||
Supported LTO compression algorithms: zlib zstd
|
||||
gcc version 10.2.1 20210110 (Debian 10.2.1-6)
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
|
||||
/usr/lib/gcc/x86_64-linux-gnu/10/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -o /tmp/ccyZ5s30.s
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9c7e8.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
|
||||
/usr/lib/gcc/x86_64-linux-gnu/10/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_9c7e8.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -o /tmp/ccrHc6lS.s
|
||||
GNU C17 (Debian 10.2.1-6) version 10.2.1 20210110 (x86_64-linux-gnu)
|
||||
compiled by GNU C version 10.2.1 20210110, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.0, isl version isl-0.23-GMP
|
||||
|
||||
@@ -51,15 +49,15 @@ GNU C17 (Debian 10.2.1-6) version 10.2.1 20210110 (x86_64-linux-gnu)
|
||||
|
||||
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
|
||||
Compiler executable checksum: 1f803793fa2e3418c492b25e7d3eac2f
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
|
||||
as -v --64 -o CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o /tmp/ccyZ5s30.s
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9c7e8.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
|
||||
as -v --64 -o CMakeFiles/cmTC_9c7e8.dir/CMakeCCompilerABI.c.o /tmp/ccrHc6lS.s
|
||||
GNU assembler version 2.35.2 (x86_64-linux-gnu) using BFD version (GNU Binutils for Debian) 2.35.2
|
||||
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/
|
||||
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../:/lib/:/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
|
||||
Linking C executable cmTC_35bd2
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_35bd2.dir/link.txt --verbose=1
|
||||
/usr/bin/cc -v CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o -o cmTC_35bd2
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9c7e8.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'
|
||||
Linking C executable cmTC_9c7e8
|
||||
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9c7e8.dir/link.txt --verbose=1
|
||||
/usr/bin/cc -v CMakeFiles/cmTC_9c7e8.dir/CMakeCCompilerABI.c.o -o cmTC_9c7e8
|
||||
Using built-in specs.
|
||||
COLLECT_GCC=/usr/bin/cc
|
||||
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/10/lto-wrapper
|
||||
@@ -72,12 +70,10 @@ Supported LTO compression algorithms: zlib zstd
|
||||
gcc version 10.2.1 20210110 (Debian 10.2.1-6)
|
||||
COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/
|
||||
LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../:/lib/:/usr/lib/
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_35bd2' '-mtune=generic' '-march=x86-64'
|
||||
/usr/lib/gcc/x86_64-linux-gnu/10/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/10/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/10/lto-wrapper -plugin-opt=-fresolution=/tmp/ccZAriqs.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_35bd2 /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/10/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/10/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/10/../../.. CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/10/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/crtn.o
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_35bd2' '-mtune=generic' '-march=x86-64'
|
||||
gmake[1]: warning: Clock skew detected. Your build may be incomplete.
|
||||
gmake[1]: Leaving directory '/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp'
|
||||
gmake: warning: Clock skew detected. Your build may be incomplete.
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_9c7e8' '-mtune=generic' '-march=x86-64'
|
||||
/usr/lib/gcc/x86_64-linux-gnu/10/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/10/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/10/lto-wrapper -plugin-opt=-fresolution=/tmp/ccEH5kMj.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_9c7e8 /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/10/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/10/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/10/../../.. CMakeFiles/cmTC_9c7e8.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/10/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/crtn.o
|
||||
COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_9c7e8' '-mtune=generic' '-march=x86-64'
|
||||
gmake[1]: Leaving directory '/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp'
|
||||
|
||||
|
||||
|
||||
@@ -98,14 +94,12 @@ Parsed C implicit include dir info from above output: rv=done
|
||||
|
||||
Parsed C implicit link information from above output:
|
||||
link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
|
||||
ignore line: [Change Dir: /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp]
|
||||
ignore line: [Change Dir: /mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp]
|
||||
ignore line: []
|
||||
ignore line: [Run Build Command(s):/usr/bin/gmake cmTC_35bd2/fast && gmake: Warning: File 'Makefile' has modification time 4458 s in the future]
|
||||
ignore line: [/usr/bin/gmake -f CMakeFiles/cmTC_35bd2.dir/build.make CMakeFiles/cmTC_35bd2.dir/build]
|
||||
ignore line: [gmake[1]: Entering directory '/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp']
|
||||
ignore line: [gmake[1]: Warning: File 'CMakeFiles/cmTC_35bd2.dir/flags.make' has modification time 4458 s in the future]
|
||||
ignore line: [Building C object CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o]
|
||||
ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c]
|
||||
ignore line: [Run Build Command(s):/usr/bin/gmake cmTC_9c7e8/fast && /usr/bin/gmake -f CMakeFiles/cmTC_9c7e8.dir/build.make CMakeFiles/cmTC_9c7e8.dir/build]
|
||||
ignore line: [gmake[1]: Entering directory '/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/CMakeTmp']
|
||||
ignore line: [Building C object CMakeFiles/cmTC_9c7e8.dir/CMakeCCompilerABI.c.o]
|
||||
ignore line: [/usr/bin/cc -v -o CMakeFiles/cmTC_9c7e8.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [COLLECT_GCC=/usr/bin/cc]
|
||||
ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none:amdgcn-amdhsa:hsa]
|
||||
@@ -115,8 +109,8 @@ Parsed C implicit link information from above output:
|
||||
ignore line: [Thread model: posix]
|
||||
ignore line: [Supported LTO compression algorithms: zlib zstd]
|
||||
ignore line: [gcc version 10.2.1 20210110 (Debian 10.2.1-6) ]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
|
||||
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/10/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -o /tmp/ccyZ5s30.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9c7e8.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
|
||||
ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/10/cc1 -quiet -v -imultiarch x86_64-linux-gnu /usr/share/cmake-3.18/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_9c7e8.dir/CMakeCCompilerABI.c.o -version -fasynchronous-unwind-tables -o /tmp/ccrHc6lS.s]
|
||||
ignore line: [GNU C17 (Debian 10.2.1-6) version 10.2.1 20210110 (x86_64-linux-gnu)]
|
||||
ignore line: [ compiled by GNU C version 10.2.1 20210110 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.0 isl version isl-0.23-GMP]
|
||||
ignore line: []
|
||||
@@ -136,15 +130,15 @@ Parsed C implicit link information from above output:
|
||||
ignore line: []
|
||||
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
|
||||
ignore line: [Compiler executable checksum: 1f803793fa2e3418c492b25e7d3eac2f]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
|
||||
ignore line: [ as -v --64 -o CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o /tmp/ccyZ5s30.s]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9c7e8.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
|
||||
ignore line: [ as -v --64 -o CMakeFiles/cmTC_9c7e8.dir/CMakeCCompilerABI.c.o /tmp/ccrHc6lS.s]
|
||||
ignore line: [GNU assembler version 2.35.2 (x86_64-linux-gnu) using BFD version (GNU Binutils for Debian) 2.35.2]
|
||||
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/]
|
||||
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../:/lib/:/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
|
||||
ignore line: [Linking C executable cmTC_35bd2]
|
||||
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_35bd2.dir/link.txt --verbose=1]
|
||||
ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o -o cmTC_35bd2 ]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_9c7e8.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64']
|
||||
ignore line: [Linking C executable cmTC_9c7e8]
|
||||
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9c7e8.dir/link.txt --verbose=1]
|
||||
ignore line: [/usr/bin/cc -v CMakeFiles/cmTC_9c7e8.dir/CMakeCCompilerABI.c.o -o cmTC_9c7e8 ]
|
||||
ignore line: [Using built-in specs.]
|
||||
ignore line: [COLLECT_GCC=/usr/bin/cc]
|
||||
ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/10/lto-wrapper]
|
||||
@@ -157,13 +151,13 @@ Parsed C implicit link information from above output:
|
||||
ignore line: [gcc version 10.2.1 20210110 (Debian 10.2.1-6) ]
|
||||
ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/]
|
||||
ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/10/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/10/../../../:/lib/:/usr/lib/]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_35bd2' '-mtune=generic' '-march=x86-64']
|
||||
link line: [ /usr/lib/gcc/x86_64-linux-gnu/10/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/10/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/10/lto-wrapper -plugin-opt=-fresolution=/tmp/ccZAriqs.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_35bd2 /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/10/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/10/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/10/../../.. CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/10/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/crtn.o]
|
||||
ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_9c7e8' '-mtune=generic' '-march=x86-64']
|
||||
link line: [ /usr/lib/gcc/x86_64-linux-gnu/10/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/10/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/10/lto-wrapper -plugin-opt=-fresolution=/tmp/ccEH5kMj.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -o cmTC_9c7e8 /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/10/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/10 -L/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/10/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/10/../../.. CMakeFiles/cmTC_9c7e8.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/10/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/crtn.o]
|
||||
arg [/usr/lib/gcc/x86_64-linux-gnu/10/collect2] ==> ignore
|
||||
arg [-plugin] ==> ignore
|
||||
arg [/usr/lib/gcc/x86_64-linux-gnu/10/liblto_plugin.so] ==> ignore
|
||||
arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/10/lto-wrapper] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=/tmp/ccZAriqs.res] ==> ignore
|
||||
arg [-plugin-opt=-fresolution=/tmp/ccEH5kMj.res] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore
|
||||
arg [-plugin-opt=-pass-through=-lc] ==> ignore
|
||||
@@ -179,7 +173,7 @@ Parsed C implicit link information from above output:
|
||||
arg [/lib64/ld-linux-x86-64.so.2] ==> ignore
|
||||
arg [-pie] ==> ignore
|
||||
arg [-o] ==> ignore
|
||||
arg [cmTC_35bd2] ==> ignore
|
||||
arg [cmTC_9c7e8] ==> ignore
|
||||
arg [/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/Scrt1.o] ==> ignore
|
||||
arg [/usr/lib/gcc/x86_64-linux-gnu/10/../../../x86_64-linux-gnu/crti.o] ==> ignore
|
||||
arg [/usr/lib/gcc/x86_64-linux-gnu/10/crtbeginS.o] ==> ignore
|
||||
@@ -191,7 +185,7 @@ Parsed C implicit link information from above output:
|
||||
arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu]
|
||||
arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib]
|
||||
arg [-L/usr/lib/gcc/x86_64-linux-gnu/10/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/10/../../..]
|
||||
arg [CMakeFiles/cmTC_35bd2.dir/CMakeCCompilerABI.c.o] ==> ignore
|
||||
arg [CMakeFiles/cmTC_9c7e8.dir/CMakeCCompilerABI.c.o] ==> ignore
|
||||
arg [-lgcc] ==> lib [gcc]
|
||||
arg [--push-state] ==> ignore
|
||||
arg [--as-needed] ==> ignore
|
||||
|
||||
@@ -63,10 +63,10 @@ RM = /usr/bin/cmake -E rm -f
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd
|
||||
CMAKE_SOURCE_DIR = "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd"
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug
|
||||
CMAKE_BINARY_DIR = "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug"
|
||||
|
||||
#=============================================================================
|
||||
# Directory level rules for the build root directory
|
||||
@@ -93,14 +93,14 @@ clean: CMakeFiles/untitled.dir/clean
|
||||
CMakeFiles/untitled.dir/all:
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/untitled.dir/build.make CMakeFiles/untitled.dir/depend
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/untitled.dir/build.make CMakeFiles/untitled.dir/build
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=1,2,3,4,5,6 "Built target untitled"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles" --progress-num=1,2,3,4,5,6 "Built target untitled"
|
||||
.PHONY : CMakeFiles/untitled.dir/all
|
||||
|
||||
# Build rule for subdir invocation for target.
|
||||
CMakeFiles/untitled.dir/rule: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles 6
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles" 6
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 CMakeFiles/untitled.dir/all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles 0
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles" 0
|
||||
.PHONY : CMakeFiles/untitled.dir/rule
|
||||
|
||||
# Convenience name for target.
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/edit_cache.dir
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/rebuild_cache.dir
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/edit_cache.dir
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/rebuild_cache.dir
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
C:\Windows\system32\wsl.exe --distribution Debian --exec /bin/bash -c "export CMAKE_COLOR_DIAGNOSTICS=ON && export CLION_IDE=TRUE && export JETBRAINS_IDE=TRUE && cd /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug && /usr/bin/cmake -DCMAKE_BUILD_TYPE=Debug -G 'CodeBlocks - Unix Makefiles' -S /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd -B /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug"
|
||||
C:\Windows\system32\wsl.exe --distribution Debian --exec /bin/bash -c "export CMAKE_COLOR_DIAGNOSTICS=ON && export CLION_IDE=TRUE && export JETBRAINS_IDE=TRUE && cd '/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug' && /usr/bin/cmake -DCMAKE_BUILD_TYPE=Debug -G 'CodeBlocks - Unix Makefiles' -S '/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd' -B '/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug'"
|
||||
-- The C compiler identification is GNU 10.2.1
|
||||
-- Detecting C compiler ABI info
|
||||
-- Detecting C compiler ABI info - done
|
||||
@@ -7,4 +7,4 @@ C:\Windows\system32\wsl.exe --distribution Debian --exec /bin/bash -c "export CM
|
||||
-- Detecting C compile features - done
|
||||
-- Configuring done
|
||||
-- Generating done
|
||||
-- Build files have been written to: /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug
|
||||
-- Build files have been written to: /mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug
|
||||
|
||||
@@ -6,27 +6,33 @@
|
||||
|
||||
#IncludeRegexTransform:
|
||||
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Filmotheque.c
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Filmotheque.c
|
||||
Movie.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Movie.h
|
||||
Filmotheque.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Filmotheque.h
|
||||
NodeTrie.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/NodeTrie.h
|
||||
List.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/List.h
|
||||
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Filmotheque.h
|
||||
NodeTrie.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/NodeTrie.h
|
||||
stdbool.h
|
||||
-
|
||||
stdlib.h
|
||||
-
|
||||
stdio.h
|
||||
-
|
||||
string.h
|
||||
-
|
||||
stdlib.h
|
||||
-
|
||||
time.h
|
||||
-
|
||||
Movie.h
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Movie.h
|
||||
Filmotheque.h
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Filmotheque.h
|
||||
NodeTrie.h
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/NodeTrie.h
|
||||
List.h
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.h
|
||||
ctype.h
|
||||
-
|
||||
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Filmotheque.h
|
||||
NodeTrie.h
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/NodeTrie.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/List.h
|
||||
stdbool.h
|
||||
-
|
||||
stdlib.h
|
||||
@@ -34,19 +40,11 @@ stdlib.h
|
||||
stdio.h
|
||||
-
|
||||
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.h
|
||||
stdbool.h
|
||||
-
|
||||
stdlib.h
|
||||
-
|
||||
stdio.h
|
||||
-
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Movie.h
|
||||
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Movie.h
|
||||
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/NodeTrie.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/NodeTrie.h
|
||||
List.h
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/List.h
|
||||
string.h
|
||||
-
|
||||
stdbool.h
|
||||
@@ -56,3 +54,11 @@ stdlib.h
|
||||
stdio.h
|
||||
-
|
||||
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/main.c
|
||||
Filmotheque.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Filmotheque.h
|
||||
List.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/List.h
|
||||
Movie.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Movie.h
|
||||
|
||||
|
||||
@@ -4,11 +4,11 @@ set(CMAKE_DEPENDS_LANGUAGES
|
||||
)
|
||||
# The set of files for implicit dependencies of each language:
|
||||
set(CMAKE_DEPENDS_CHECK_C
|
||||
"/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Filmotheque.c" "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/Filmotheque.c.o"
|
||||
"/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.c" "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/List.c.o"
|
||||
"/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Movie.c" "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/Movie.c.o"
|
||||
"/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/NodeTrie.c" "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/NodeTrie.c.o"
|
||||
"/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/main.c" "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/main.c.o"
|
||||
"/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Filmotheque.c" "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/Filmotheque.c.o"
|
||||
"/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/List.c" "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/List.c.o"
|
||||
"/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Movie.c" "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/Movie.c.o"
|
||||
"/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/NodeTrie.c" "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/NodeTrie.c.o"
|
||||
"/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/main.c" "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/main.c.o"
|
||||
)
|
||||
set(CMAKE_C_COMPILER_ID "GNU")
|
||||
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -62,10 +62,10 @@ RM = /usr/bin/cmake -E rm -f
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd
|
||||
CMAKE_SOURCE_DIR = "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd"
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug
|
||||
CMAKE_BINARY_DIR = "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug"
|
||||
|
||||
# Include any dependencies generated for this target.
|
||||
include CMakeFiles/untitled.dir/depend.make
|
||||
@@ -78,68 +78,68 @@ include CMakeFiles/untitled.dir/flags.make
|
||||
|
||||
CMakeFiles/untitled.dir/Filmotheque.c.o: CMakeFiles/untitled.dir/flags.make
|
||||
CMakeFiles/untitled.dir/Filmotheque.c.o: ../Filmotheque.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/untitled.dir/Filmotheque.c.o"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/Filmotheque.c.o -c /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Filmotheque.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/untitled.dir/Filmotheque.c.o"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/Filmotheque.c.o -c "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Filmotheque.c"
|
||||
|
||||
CMakeFiles/untitled.dir/Filmotheque.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/untitled.dir/Filmotheque.c.i"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Filmotheque.c > CMakeFiles/untitled.dir/Filmotheque.c.i
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Filmotheque.c" > CMakeFiles/untitled.dir/Filmotheque.c.i
|
||||
|
||||
CMakeFiles/untitled.dir/Filmotheque.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/untitled.dir/Filmotheque.c.s"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Filmotheque.c -o CMakeFiles/untitled.dir/Filmotheque.c.s
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Filmotheque.c" -o CMakeFiles/untitled.dir/Filmotheque.c.s
|
||||
|
||||
CMakeFiles/untitled.dir/main.c.o: CMakeFiles/untitled.dir/flags.make
|
||||
CMakeFiles/untitled.dir/main.c.o: ../main.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/untitled.dir/main.c.o"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/main.c.o -c /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/main.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/untitled.dir/main.c.o"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/main.c.o -c "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/main.c"
|
||||
|
||||
CMakeFiles/untitled.dir/main.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/untitled.dir/main.c.i"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/main.c > CMakeFiles/untitled.dir/main.c.i
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/main.c" > CMakeFiles/untitled.dir/main.c.i
|
||||
|
||||
CMakeFiles/untitled.dir/main.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/untitled.dir/main.c.s"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/main.c -o CMakeFiles/untitled.dir/main.c.s
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/main.c" -o CMakeFiles/untitled.dir/main.c.s
|
||||
|
||||
CMakeFiles/untitled.dir/Movie.c.o: CMakeFiles/untitled.dir/flags.make
|
||||
CMakeFiles/untitled.dir/Movie.c.o: ../Movie.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/untitled.dir/Movie.c.o"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/Movie.c.o -c /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Movie.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_3) "Building C object CMakeFiles/untitled.dir/Movie.c.o"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/Movie.c.o -c "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Movie.c"
|
||||
|
||||
CMakeFiles/untitled.dir/Movie.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/untitled.dir/Movie.c.i"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Movie.c > CMakeFiles/untitled.dir/Movie.c.i
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Movie.c" > CMakeFiles/untitled.dir/Movie.c.i
|
||||
|
||||
CMakeFiles/untitled.dir/Movie.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/untitled.dir/Movie.c.s"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Movie.c -o CMakeFiles/untitled.dir/Movie.c.s
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Movie.c" -o CMakeFiles/untitled.dir/Movie.c.s
|
||||
|
||||
CMakeFiles/untitled.dir/NodeTrie.c.o: CMakeFiles/untitled.dir/flags.make
|
||||
CMakeFiles/untitled.dir/NodeTrie.c.o: ../NodeTrie.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/untitled.dir/NodeTrie.c.o"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/NodeTrie.c.o -c /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/NodeTrie.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_4) "Building C object CMakeFiles/untitled.dir/NodeTrie.c.o"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/NodeTrie.c.o -c "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/NodeTrie.c"
|
||||
|
||||
CMakeFiles/untitled.dir/NodeTrie.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/untitled.dir/NodeTrie.c.i"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/NodeTrie.c > CMakeFiles/untitled.dir/NodeTrie.c.i
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/NodeTrie.c" > CMakeFiles/untitled.dir/NodeTrie.c.i
|
||||
|
||||
CMakeFiles/untitled.dir/NodeTrie.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/untitled.dir/NodeTrie.c.s"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/NodeTrie.c -o CMakeFiles/untitled.dir/NodeTrie.c.s
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/NodeTrie.c" -o CMakeFiles/untitled.dir/NodeTrie.c.s
|
||||
|
||||
CMakeFiles/untitled.dir/List.c.o: CMakeFiles/untitled.dir/flags.make
|
||||
CMakeFiles/untitled.dir/List.c.o: ../List.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/untitled.dir/List.c.o"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/List.c.o -c /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.c
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_5) "Building C object CMakeFiles/untitled.dir/List.c.o"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/untitled.dir/List.c.o -c "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/List.c"
|
||||
|
||||
CMakeFiles/untitled.dir/List.c.i: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/untitled.dir/List.c.i"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.c > CMakeFiles/untitled.dir/List.c.i
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/List.c" > CMakeFiles/untitled.dir/List.c.i
|
||||
|
||||
CMakeFiles/untitled.dir/List.c.s: cmake_force
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/untitled.dir/List.c.s"
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.c -o CMakeFiles/untitled.dir/List.c.s
|
||||
/usr/bin/cc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/List.c" -o CMakeFiles/untitled.dir/List.c.s
|
||||
|
||||
# Object files for target untitled
|
||||
untitled_OBJECTS = \
|
||||
@@ -159,7 +159,7 @@ untitled: CMakeFiles/untitled.dir/NodeTrie.c.o
|
||||
untitled: CMakeFiles/untitled.dir/List.c.o
|
||||
untitled: CMakeFiles/untitled.dir/build.make
|
||||
untitled: CMakeFiles/untitled.dir/link.txt
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles --progress-num=$(CMAKE_PROGRESS_6) "Linking C executable untitled"
|
||||
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles" --progress-num=$(CMAKE_PROGRESS_6) "Linking C executable untitled"
|
||||
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/untitled.dir/link.txt --verbose=$(VERBOSE)
|
||||
|
||||
# Rule to build all files generated by this target.
|
||||
@@ -172,6 +172,6 @@ CMakeFiles/untitled.dir/clean:
|
||||
.PHONY : CMakeFiles/untitled.dir/clean
|
||||
|
||||
CMakeFiles/untitled.dir/depend:
|
||||
cd /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/DependInfo.cmake --color=$(COLOR)
|
||||
cd "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug" && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd" "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd" "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug" "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug" "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles/untitled.dir/DependInfo.cmake" --color=$(COLOR)
|
||||
.PHONY : CMakeFiles/untitled.dir/depend
|
||||
|
||||
|
||||
@@ -2,25 +2,25 @@
|
||||
# Generated by "Unix Makefiles" Generator, CMake Version 3.18
|
||||
|
||||
CMakeFiles/untitled.dir/Filmotheque.c.o
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Filmotheque.c
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Filmotheque.h
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.h
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Movie.h
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/NodeTrie.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Filmotheque.c
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Filmotheque.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/List.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Movie.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/NodeTrie.h
|
||||
CMakeFiles/untitled.dir/List.c.o
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.c
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.h
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Movie.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/List.c
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/List.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Movie.h
|
||||
CMakeFiles/untitled.dir/Movie.c.o
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Movie.c
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Movie.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Movie.c
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Movie.h
|
||||
CMakeFiles/untitled.dir/NodeTrie.c.o
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.h
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/NodeTrie.c
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/NodeTrie.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/List.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/NodeTrie.c
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/NodeTrie.h
|
||||
CMakeFiles/untitled.dir/main.c.o
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Filmotheque.h
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.h
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Movie.h
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/NodeTrie.h
|
||||
/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/main.c
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Filmotheque.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/List.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Movie.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/NodeTrie.h
|
||||
/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/main.c
|
||||
|
||||
Binary file not shown.
@@ -67,10 +67,10 @@ RM = /usr/bin/cmake -E rm -f
|
||||
EQUALS = =
|
||||
|
||||
# The top-level source directory on which CMake was run.
|
||||
CMAKE_SOURCE_DIR = /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd
|
||||
CMAKE_SOURCE_DIR = "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd"
|
||||
|
||||
# The top-level build directory on which CMake was run.
|
||||
CMAKE_BINARY_DIR = /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug
|
||||
CMAKE_BINARY_DIR = "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug"
|
||||
|
||||
#=============================================================================
|
||||
# Targets provided globally by CMake.
|
||||
@@ -99,9 +99,9 @@ rebuild_cache/fast: rebuild_cache
|
||||
|
||||
# The main all target
|
||||
all: cmake_check_build_system
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug//CMakeFiles/progress.marks
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles" "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug//CMakeFiles/progress.marks"
|
||||
$(MAKE) $(MAKESILENT) -f CMakeFiles/Makefile2 all
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles 0
|
||||
$(CMAKE_COMMAND) -E cmake_progress_start "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/CMakeFiles" 0
|
||||
.PHONY : all
|
||||
|
||||
# The main clean target
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
Start testing: Jun 13 16:29 CEST
|
||||
Start testing: Jun 13 18:20 CEST
|
||||
----------------------------------------------------------
|
||||
End testing: Jun 13 16:29 CEST
|
||||
End testing: Jun 13 18:20 CEST
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
# Install script for directory: /mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd
|
||||
# Install script for directory: /mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd
|
||||
|
||||
# Set the install prefix
|
||||
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
|
||||
@@ -50,5 +50,5 @@ endif()
|
||||
|
||||
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
|
||||
"${CMAKE_INSTALL_MANIFEST_FILES}")
|
||||
file(WRITE "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/${CMAKE_INSTALL_MANIFEST}"
|
||||
file(WRITE "/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/${CMAKE_INSTALL_MANIFEST}"
|
||||
"${CMAKE_INSTALL_MANIFEST_CONTENT}")
|
||||
|
||||
Binary file not shown.
@@ -8,38 +8,38 @@
|
||||
<Option virtualFolders="CMake Files\;"/>
|
||||
<Build>
|
||||
<Target title="all">
|
||||
<Option working_dir="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug"/>
|
||||
<Option working_dir="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug"/>
|
||||
<Option type="4"/>
|
||||
<MakeCommands>
|
||||
<Build command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 all"/>
|
||||
<CompileFile command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||
<Clean command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
<DistClean command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
<Build command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 all"/>
|
||||
<CompileFile command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||
<Clean command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
<DistClean command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
</MakeCommands>
|
||||
</Target>
|
||||
<Target title="edit_cache">
|
||||
<Option working_dir="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug"/>
|
||||
<Option working_dir="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug"/>
|
||||
<Option type="4"/>
|
||||
<MakeCommands>
|
||||
<Build command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 edit_cache"/>
|
||||
<CompileFile command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||
<Clean command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
<DistClean command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
<Build command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 edit_cache"/>
|
||||
<CompileFile command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||
<Clean command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
<DistClean command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
</MakeCommands>
|
||||
</Target>
|
||||
<Target title="rebuild_cache">
|
||||
<Option working_dir="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug"/>
|
||||
<Option working_dir="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug"/>
|
||||
<Option type="4"/>
|
||||
<MakeCommands>
|
||||
<Build command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 rebuild_cache"/>
|
||||
<CompileFile command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||
<Clean command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
<DistClean command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
<Build command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 rebuild_cache"/>
|
||||
<CompileFile command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||
<Clean command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
<DistClean command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
</MakeCommands>
|
||||
</Target>
|
||||
<Target title="untitled">
|
||||
<Option output="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/untitled" prefix_auto="0" extension_auto="0"/>
|
||||
<Option working_dir="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug"/>
|
||||
<Option output="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/untitled" prefix_auto="0" extension_auto="0"/>
|
||||
<Option working_dir="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug"/>
|
||||
<Option object_output="./"/>
|
||||
<Option type="1"/>
|
||||
<Option compiler="gcc"/>
|
||||
@@ -50,15 +50,15 @@
|
||||
<Add directory="/usr/include"/>
|
||||
</Compiler>
|
||||
<MakeCommands>
|
||||
<Build command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 untitled"/>
|
||||
<CompileFile command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||
<Clean command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
<DistClean command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
<Build command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 untitled"/>
|
||||
<CompileFile command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||
<Clean command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
<DistClean command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
</MakeCommands>
|
||||
</Target>
|
||||
<Target title="untitled/fast">
|
||||
<Option output="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/untitled" prefix_auto="0" extension_auto="0"/>
|
||||
<Option working_dir="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug"/>
|
||||
<Option output="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug/untitled" prefix_auto="0" extension_auto="0"/>
|
||||
<Option working_dir="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/cmake-build-debug"/>
|
||||
<Option object_output="./"/>
|
||||
<Option type="1"/>
|
||||
<Option compiler="gcc"/>
|
||||
@@ -69,41 +69,41 @@
|
||||
<Add directory="/usr/include"/>
|
||||
</Compiler>
|
||||
<MakeCommands>
|
||||
<Build command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 untitled/fast"/>
|
||||
<CompileFile command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||
<Clean command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
<DistClean command="/usr/bin/gmake -j16 -f "/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
<Build command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 untitled/fast"/>
|
||||
<CompileFile command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 "$file""/>
|
||||
<Clean command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
<DistClean command="/usr/bin/gmake -j12 -f "/mnt/d/Nextcloud/To\ transfert/ProjetFin/BackEnd/cmake-build-debug/Makefile" VERBOSE=1 clean"/>
|
||||
</MakeCommands>
|
||||
</Target>
|
||||
</Build>
|
||||
<Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Filmotheque.c">
|
||||
<Unit filename="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Filmotheque.c">
|
||||
<Option target="untitled"/>
|
||||
</Unit>
|
||||
<Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Filmotheque.h">
|
||||
<Unit filename="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Filmotheque.h">
|
||||
<Option target="untitled"/>
|
||||
</Unit>
|
||||
<Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.c">
|
||||
<Unit filename="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/List.c">
|
||||
<Option target="untitled"/>
|
||||
</Unit>
|
||||
<Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/List.h">
|
||||
<Unit filename="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/List.h">
|
||||
<Option target="untitled"/>
|
||||
</Unit>
|
||||
<Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Movie.c">
|
||||
<Unit filename="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Movie.c">
|
||||
<Option target="untitled"/>
|
||||
</Unit>
|
||||
<Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/Movie.h">
|
||||
<Unit filename="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/Movie.h">
|
||||
<Option target="untitled"/>
|
||||
</Unit>
|
||||
<Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/NodeTrie.c">
|
||||
<Unit filename="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/NodeTrie.c">
|
||||
<Option target="untitled"/>
|
||||
</Unit>
|
||||
<Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/NodeTrie.h">
|
||||
<Unit filename="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/NodeTrie.h">
|
||||
<Option target="untitled"/>
|
||||
</Unit>
|
||||
<Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/main.c">
|
||||
<Unit filename="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/main.c">
|
||||
<Option target="untitled"/>
|
||||
</Unit>
|
||||
<Unit filename="/mnt/c/Users/BreizhHardware/Downloads/ProjetFin/BackEnd/CMakeLists.txt">
|
||||
<Unit filename="/mnt/d/Nextcloud/To transfert/ProjetFin/BackEnd/CMakeLists.txt">
|
||||
<Option virtualFolder="CMake Files\"/>
|
||||
</Unit>
|
||||
</Project>
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
int main() {
|
||||
int stop = 0;
|
||||
|
||||
char *fichier = "BD_big.txt";
|
||||
char *fichier = "BD_small.txt";
|
||||
|
||||
//Create a table of list named tableau
|
||||
struct List *tableau[LENGTH];
|
||||
@@ -21,11 +21,15 @@ int main() {
|
||||
//check if requests.txt exist but don't create it if it doesn't exist
|
||||
FILE *verif = fopen("requests.txt", "r");
|
||||
if (verif != NULL) {
|
||||
printf("%d\n", stop);
|
||||
printf("Verif passed");
|
||||
char *request = "requests.txt";
|
||||
stop = readRequest(request, tableau, filmo);
|
||||
printf("%d\n", stop);
|
||||
}
|
||||
}
|
||||
printf("stop = 8\n");
|
||||
deleteFilmotheque(filmo, tableau);
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
<button type="submit" id="researchAll" class="searchButton">Tout rechercher</button><br>
|
||||
</form>
|
||||
<form id="formStop"></form>
|
||||
<button id="stop" onclick="writeFile('formStop', 'stopServer')">Couper le serveur</button>
|
||||
<button id="stop" onclick="writeFileStop('stopServer')">Couper le serveur</button>
|
||||
</div>
|
||||
<div id="bottom">
|
||||
<p>Created by Louis MARVILLET, Herman MARZELIERE, Félix MARQUET<br>
|
||||
|
||||
@@ -20,7 +20,19 @@ function writeFile(id_form, func) {
|
||||
checkFile(resolve);
|
||||
});
|
||||
}
|
||||
// -------------------------
|
||||
// ----------WRITE FILE STOP----------
|
||||
|
||||
function writeFileStop(func){
|
||||
let element = document.createElement('a');
|
||||
let textToSave = func;
|
||||
|
||||
element.setAttribute('href', 'data:text/plain;charset=utf-8,' + encodeURIComponent(textToSave));
|
||||
element.setAttribute('download', 'requests.txt');
|
||||
element.style.display = 'none';
|
||||
document.body.appendChild(element);
|
||||
element.click();
|
||||
document.body.removeChild(element);
|
||||
}
|
||||
|
||||
|
||||
// ------- READ FILE -------
|
||||
|
||||
@@ -183,6 +183,8 @@ function readAndDisplay() {
|
||||
for (let i = 0; i < films.length; i++) {
|
||||
films[i] = films[i].replace("\r", "");
|
||||
}
|
||||
// Retire le dernier élément du tableau (vide)
|
||||
films.pop();
|
||||
|
||||
films.filter[Boolean];
|
||||
|
||||
@@ -194,7 +196,7 @@ function readAndDisplay() {
|
||||
|
||||
|
||||
// Calculer le nombre total de pages
|
||||
totalPages = Math.ceil(films.length-1 / filmsPerPage);
|
||||
totalPages = Math.ceil(films.length / filmsPerPage);
|
||||
// Afficher la première page
|
||||
displayPage(currentPage);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user