Skip to content

Commit

Permalink
Fix the imports
Browse files Browse the repository at this point in the history
  • Loading branch information
RobDangerous committed Mar 13, 2024
1 parent 3e0fbf9 commit cd79ef5
Show file tree
Hide file tree
Showing 27 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion kmake/src/Exporters/AndroidExporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import * as fs from 'kmake/fsextra';
import { execSync } from 'child_process';
import * as os from 'os';
import * as path from 'path';
import { CompilerCommandsExporter } from './CompileCommandsExporter';
import { CompilerCommandsExporter } from 'kmake/Exporters/CompileCommandsExporter';

interface TargetOptions {
package: string;
Expand Down
2 changes: 1 addition & 1 deletion kmake/src/Exporters/CLionExporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Platform } from 'kmake/Platform';
import * as log from 'kmake/log';
import * as os from 'os';
import * as child_process from 'child_process';
import { Exporter } from './Exporter';
import { Exporter } from 'kmake/Exporters/Exporter';

export class CLionExporter extends Exporter {
constructor() {
Expand Down
2 changes: 1 addition & 1 deletion kmake/src/Exporters/CompileCommandsExporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { Platform } from 'kmake/Platform';
import * as log from 'kmake/log';
import * as os from 'os';
import * as child_process from 'child_process';
import { Exporter } from './Exporter';
import { Exporter } from 'kmake/Exporters/Exporter';

export class CompilerCommandsExporter extends Exporter {
constructor() {
Expand Down
2 changes: 1 addition & 1 deletion kmake/src/Exporters/EmscriptenExporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Options } from 'kmake/Options';
import { GraphicsApi } from 'kmake/GraphicsApi';
import * as fs from 'kmake/fsextra';
import * as path from 'path';
import { CompilerCommandsExporter } from './CompileCommandsExporter';
import { CompilerCommandsExporter } from 'kmake/Exporters/CompileCommandsExporter';

export class EmscriptenExporter extends Exporter {
compileCommands: CompilerCommandsExporter;
Expand Down
2 changes: 1 addition & 1 deletion kmake/src/Exporters/FreeBSDExporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Project } from 'kmake/Project';
import { Compiler } from 'kmake/Compiler';
import * as fs from 'kmake/fsextra';
import * as path from 'path';
import { CLionExporter } from './CLionExporter';
import { CLionExporter } from 'kmake/Exporters/CLionExporter';

export class FreeBSDExporter extends Exporter {
clion: CLionExporter;
Expand Down
8 changes: 4 additions & 4 deletions kmake/src/Exporters/LinuxExporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import { Project } from 'kmake/Project';
import { Compiler } from 'kmake/Compiler';
import * as fs from 'kmake/fsextra';
import * as path from 'path';
import { NinjaExporter } from './NinjaExporter';
import { MakeExporter } from './MakeExporter';
import { CLionExporter } from './CLionExporter';
import { CompilerCommandsExporter } from './CompileCommandsExporter';
import { NinjaExporter } from 'kmake/Exporters/NinjaExporter';
import { MakeExporter } from 'kmake/Exporters/MakeExporter';
import { CLionExporter } from 'kmake/Exporters/CLionExporter';
import { CompilerCommandsExporter } from 'kmake/Exporters/CompileCommandsExporter';

export class LinuxExporter extends Exporter {
ninja: NinjaExporter;
Expand Down
2 changes: 1 addition & 1 deletion kmake/src/Exporters/VSCodeExporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Project } from 'kmake/Project';
import { Platform } from 'kmake/Platform';
import * as fs from 'kmake/fsextra';
import * as path from 'path';
import { CompilerCommandsExporter } from './CompileCommandsExporter';
import { CompilerCommandsExporter } from 'kmake/Exporters/CompileCommandsExporter';

export class VSCodeExporter extends Exporter {
compileCommands: CompilerCommandsExporter;
Expand Down
2 changes: 1 addition & 1 deletion kmake/src/Exporters/VisualStudioExporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import * as log from 'kmake/log';
import * as fs from 'kmake/fsextra';
import * as path from 'path';
import * as crypto from 'crypto';
import { CLionExporter } from './CLionExporter';
import { CLionExporter } from 'kmake/Exporters/CLionExporter';

function isGitPath(aPath: string): boolean {
return aPath.indexOf('/.git/') >= 0 || aPath.indexOf('\\.git\\') >= 0 || aPath.endsWith('/.git') || aPath.endsWith('\\.git');
Expand Down
2 changes: 1 addition & 1 deletion kmake/src/Exporters/WasmExporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { Options } from 'kmake/Options';
import { GraphicsApi } from 'kmake/GraphicsApi';
import * as fs from 'kmake/fsextra';
import * as path from 'path';
import { CompilerCommandsExporter } from './CompileCommandsExporter';
import { CompilerCommandsExporter } from 'kmake/Exporters/CompileCommandsExporter';

export class WasmExporter extends Exporter {
compileCommands: CompilerCommandsExporter;
Expand Down
2 changes: 1 addition & 1 deletion lib/kmake/Exporters/AndroidExporter.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/kmake/Exporters/AndroidExporter.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/kmake/Exporters/CLionExporter.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/kmake/Exporters/CLionExporter.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/kmake/Exporters/CompileCommandsExporter.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit cd79ef5

Please sign in to comment.