at least TS opens

This commit is contained in:
rusefi 2020-04-20 15:39:48 -04:00
parent 934898f903
commit 821448bd8f
10 changed files with 77 additions and 0 deletions

4
java_tools/ts_screenshots/.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
inc
config
TunerStudio.properties
lib

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Encoding" addBOMForNewFiles="with NO BOM" />
</project>

View File

@ -0,0 +1,9 @@
<component name="libraryTable">
<library name="3rd_party">
<CLASSES>
<root url="jar://$PROJECT_DIR$/lib/zip4j_1.3.1.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</component>

View File

@ -0,0 +1,10 @@
<component name="libraryTable">
<library name="TunerStudioMS">
<CLASSES>
<root url="jar://$PROJECT_DIR$/lib/TunerStudioMS.jar!/" />
<root url="jar://$PROJECT_DIR$/lib/TunerStudioPluginAPI.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</component>

View File

@ -0,0 +1,11 @@
<component name="libraryTable">
<library name="serial">
<CLASSES>
<root url="jar://$PROJECT_DIR$/lib/jssc.jar!/" />
<root url="jar://$PROJECT_DIR$/lib/RXTXcomm.jar!/" />
<root url="jar://$PROJECT_DIR$/lib/JavaFTD2XX.jar!/" />
</CLASSES>
<JAVADOC />
<SOURCES />
</library>
</component>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" default="false" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/out" />
</component>
</project>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/screen/screen.iml" filepath="$PROJECT_DIR$/screen/screen.iml" />
</modules>
</component>
</project>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/../.." vcs="Git" />
</component>
</project>

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="jdk" jdkName="1.8" jdkType="JavaSDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="TunerStudioMS" level="project" />
<orderEntry type="library" name="serial" level="project" />
<orderEntry type="library" name="3rd_party" level="project" />
</component>
</module>

View File

@ -0,0 +1,5 @@
public class ScreenGenerator {
public static void main(String[] args) {
TunerStudio.main(args);
}
}