Skip to content

Commit b9b1e48

Browse files
MrcSnmWebFreak001
authored andcommitted
Added: Completion also for SDL
1 parent d3f6236 commit b9b1e48

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/sdl/sdl-contributions.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -503,6 +503,15 @@ const buildSettings: CompletionTagMap = {
503503
minValues: 0,
504504
suggestShouldHaveValues: true
505505
},
506+
frameworks: {
507+
description: "A list of external framework names - Used only for darwin platforms. \"Foundation\" is translated to the linker flags \"-L-framework -LFoundation\"",
508+
values: {
509+
type: "string"
510+
},
511+
attributes: platformAttributes,
512+
minValues: 0,
513+
suggestShouldHaveValues: true
514+
},
506515
sourceFiles: {
507516
description: "Additional files passed to the compiler - can be useful to add certain configuration dependent source files that are not contained in the general source folder",
508517
values: pathComplete,
@@ -569,6 +578,12 @@ const buildSettings: CompletionTagMap = {
569578
minValues: 0
570579
// default: views, so empty is valid and not a warning
571580
},
581+
cImportPaths: {
582+
description: "A list of import paths to search for C source files. Translated to -P-I",
583+
values: pathComplete,
584+
attributes: platformAttributes,
585+
minValues: 0
586+
},
572587
preGenerateCommands: {
573588
description: "A list of shell commands that is executed before project generation is started",
574589
values: {

0 commit comments

Comments
 (0)