SolarFM/src/versions/solarfm-0.0.1/SolarFM_exec_bin.cpp

11 lines
158 B
C++

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
using namespace std;
int main() {
chdir("/opt/SolarFM/");
system("python .");
return 0;
}