|
|
@@ -10,9 +10,15 @@ |
|
|
|
using namespace rack; |
|
|
|
|
|
|
|
int main(int argc, char* argv[]) { |
|
|
|
char *cwd = getcwd(NULL, 0); |
|
|
|
printf("Current working directory is %s\n", cwd); |
|
|
|
free(cwd); |
|
|
|
{ |
|
|
|
char *cwd = getcwd(NULL, 0); |
|
|
|
printf("Current working directory: %s\n", cwd); |
|
|
|
free(cwd); |
|
|
|
std::string globalDir = assetGlobal(""); |
|
|
|
std::string localDir = assetLocal(""); |
|
|
|
printf("Global directory: %s\n", globalDir.c_str()); |
|
|
|
printf("Local directory: %s\n", localDir.c_str()); |
|
|
|
} |
|
|
|
|
|
|
|
pluginInit(); |
|
|
|
engineInit(); |
|
|
|