Skip to content
Snippets Groups Projects
local.cxx 241 B
Newer Older
Matus Balogh's avatar
t
Matus Balogh committed
#include <iostream>
#include <stdlib.h>
#include <string.h>

#ifndef PROJECT_FOLDER
#define PROJECT_FOLDER "undefined"
#endif


void processGit()
{
	system("git checkout");
	system("git status");
	std::cout << PROJECT_FOLDER << std::endl;
}