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

11 lines
158 B
C++
Raw Permalink Normal View History

2021-10-10 06:45:55 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
using namespace std;
int main() {
2021-11-28 22:01:29 +00:00
chdir("/opt/SolarFM/");
system("python .");
2021-10-10 06:45:55 +00:00
return 0;
}