Home
last modified time | relevance | path

Searched refs:project_sln_path (Results 1 – 3 of 3) sorted by relevance

/GUIX-v6.4.1/test/guix_studio_test/test_demo/
Dtest_main.py67 def studio_compile(project_sln_path): argument
69 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): argument
83 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:
/GUIX-v6.4.1/test/guix_studio_test/test_view/
Dtest_main.py76 project_sln_path = "../../../guix_studio/build/vs_2019/studiox.sln"
211 test_utils.studio_compile(msbuild_exe_path, project_sln_path)
Dtest_utils.py155 def studio_compile(msbuild_exe_path, project_sln_path): argument
162 raise Exception('studiox.sln not found. path=' + project_sln_path)
164 os.system("msbuild " + project_sln_path + " /p:Configuration=Release")