Searched refs:project_sln_path (Results 1 – 3 of 3) sorted by relevance
67 def studio_compile(project_sln_path): argument69 if not os.path.isfile(project_sln_path):70 raise Exception('studiox.sln not found. path=' + project_sln_path)73 if os.system("msbuild " + project_sln_path + " /p:Configuration=Release") != 0:81 def guix_compile(project_sln_path, configuration): argument83 if not os.path.isfile(project_sln_path):84 raise Exception('guix.sln not found. path=' + project_sln_path)87 if os.system("msbuild " + project_sln_path + " /p:Configuration=" + configuration) != 0:
76 project_sln_path = "../../../guix_studio/build/vs_2019/studiox.sln"211 test_utils.studio_compile(msbuild_exe_path, project_sln_path)
155 def studio_compile(msbuild_exe_path, project_sln_path): argument162 raise Exception('studiox.sln not found. path=' + project_sln_path)164 os.system("msbuild " + project_sln_path + " /p:Configuration=Release")