Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use launch.vs.json with Visual Studio to parameterize the debug start… #470

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions src/Learning/KNITransfer/KNITransfer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,21 @@ void SetWindowsDebugDir(const ALString& sDatasetFamily, const ALString& sDataset
ALString sUserRootPath;
int nRet;

// A parametrer pour chaque utilisateur
// Devra etre fait plus proprement quand tout l'equipe sera sur git, par exemple via une variable
// d'environnement et quelques commentaires clairs
sUserRootPath = "C:/Applications/boullema/LearningTest.V10.5.3-b.0/TestKNI/";
// Parametrage du repertoire racine de LearningTest via une variable d'environnement "LearningTestDir"
// Il est recommande de positionner cette variable d'environnement via le fichier "launch.vs.json"
// du repertoire ".vs", avec la cle "env"
// Cf. wiki https://github.com/KhiopsML/khiops/wiki/Setting-Up-the-Development-Environment
sUserRootPath = p_getenv("LearningTestDir");
sUserRootPath += "/TestKNI/";

// Pour permettre de continuer a utiliser LearningTest, on ne fait rien s'il y a deja un fichier test.prm
// dans le repertoire courante
// dans le repertoire courant
if (FileService::FileExists("test.prm"))
return;

// Changement de repertoire, uniquement pour Windows
nRet = _chdir(sUserRootPath + sDatasetFamily + "/" + sDataset);
assert(nRet == 0);
#endif
}

Expand Down
14 changes: 9 additions & 5 deletions src/Learning/MODL/MODL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,21 @@ void SetWindowsDebugDir(const ALString& sDatasetFamily, const ALString& sDataset
ALString sUserRootPath;
int nRet;

// A parametrer pour chaque utilisateur
// Devra etre fait plus proprement quand tout l'equipe sera sur git, par exemple via une variable
// d'environnement et quelques commentaires clairs
sUserRootPath = "C:/Applications/boullema/LearningTest.V10.5.3-b.0/TestKhiops/";
// Parametrage du repertoire racine de LearningTest via une variable d'environnement "LearningTestDir"
// Il est recommande de positionner cette variable d'environnement via le fichier "launch.vs.json"
// du repertoire ".vs", avec la cle "env"
// Cf. wiki https://github.com/KhiopsML/khiops/wiki/Setting-Up-the-Development-Environment
sUserRootPath = p_getenv("LearningTestDir");
sUserRootPath += "/TestKhiops/";

// Pour permettre de continuer a utiliser LearningTest, on ne fait rien s'il y a deja un fichier test.prm
// dans le repertoire courante
// dans le repertoire courant
if (FileService::FileExists("test.prm"))
return;

// Changement de repertoire, uniquement pour Windows
nRet = _chdir(sUserRootPath + sDatasetFamily + "/" + sDataset);
assert(nRet == 0);
#endif
}

Expand All @@ -39,6 +42,7 @@ int main(int argc, char** argv)
// SetWindowsDebugDir("Standard", "IrisLight");
// SetWindowsDebugDir("Standard", "IrisU2D");
// SetWindowsDebugDir("MultiTables", "DataPathCheck");
SetWindowsDebugDir("z_Work", "StarSchemaWithoutRoot");

// Parametrage des logs memoires depuis les variables d'environnement, pris en compte dans KWLearningProject
// KhiopsMemStatsLogFileName, KhiopsMemStatsLogFrequency, KhiopsMemStatsLogToCollect
Expand Down
12 changes: 7 additions & 5 deletions src/Learning/MODL_Coclustering/MODL_Coclustering.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@ void SetWindowsDebugDir(const ALString& sDatasetFamily, const ALString& sDataset
ALString sUserRootPath;
int nRet;

// A parametrer pour chaque utilisateur
// Devra etre fait plus proprement quand tout l'equipe sera sur git, par exemple via une variable
// d'environnement et quelques commentaires clairs
sUserRootPath = "C:/Applications/boullema/LearningTest.V10.5.2-b.0/TestCoclustering/";
// Parametrage du repertoire racine de LearningTest via une variable d'environnement "LearningTestDir"
// Il est recommande de positionner cette variable d'environnement via le fichier "launch.vs.json"
// du repertoire ".vs", avec la cle "env"
// Cf. wiki https://github.com/KhiopsML/khiops/wiki/Setting-Up-the-Development-Environment
sUserRootPath = p_getenv("LearningTestDir");
sUserRootPath += "/TestCoclustering/";

// Pour permettre de continuer a utiliser LearningTest, on ne fait rien s'il y a deja un fichier test.prm
// dans le repertoire courante
// dans le repertoire courant
if (FileService::FileExists("test.prm"))
return;

Expand Down
Loading