Package org.intellij.erlang.configuration

Examples of org.intellij.erlang.configuration.ErlangCompilerSettings


    }
    return createdProject;
  }

  private static void validateProject(@NotNull Project project) throws Exception {
    ErlangCompilerSettings compilerSettings = ErlangCompilerSettings.getInstance(project);
    assertNotNull("Erlang compiler settings are not created.", compilerSettings);
    assertTrue("Rebar compiler is not set as default compiler.", compilerSettings.isUseRebarCompilerEnabled());
    assertFalse("Clear output directory flag was not unset.", CompilerWorkspaceConfiguration.getInstance(project).CLEAR_OUTPUT_DIRECTORY);
  }
View Full Code Here

TOP

Related Classes of org.intellij.erlang.configuration.ErlangCompilerSettings

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.