This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
forked from matkatmusic/PFMCPP_Project1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.replit
70 lines (56 loc) · 1.5 KB
/
.replit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
language = "cpp"
run = "clang++ -std=c++17 -Weverything -Wno-c++98-compat -Wno-missing-prototypes main.cpp && ./a.out"
hidden = ["ccls"]
entrypoint = "main.cpp"
compile = "make -s"
[languages]
[languages.cpp]
pattern = "**/*.{cpp,h}"
[languages.cpp.languageServer]
start = "ccls"
[debugger]
support = true
[debugger.compile]
command = ["make", "main-debug"]
noFileArgs = true
[debugger.interactive]
transport = "stdio"
startCommand = ["dap-cpp"]
[debugger.interactive.initializeMessage]
command = "initialize"
type = "request"
[debugger.interactive.initializeMessage.arguments]
adapterID = "cppdbg"
clientID = "replit"
clientName = "replit.com"
columnsStartAt1 = true
linesStartAt1 = true
locale = "en-us"
pathFormat = "path"
supportsInvalidatedEvent = true
supportsProgressReporting = true
supportsRunInTerminalRequest = true
supportsVariablePaging = true
supportsVariableType = true
[debugger.interactive.launchMessage]
command = "launch"
type = "request"
[debugger.interactive.launchMessage.arguments]
MIMode = "gdb"
cwd = "."
externalConsole = false
miDebuggerPath = "gdb"
name = "g++ - Build and debug active file"
program = "./main-debug"
request = "launch"
stopAtEntry = false
type = "cppdbg"
[debugger.interactive.launchMessage.arguments.logging]
[[debugger.interactive.launchMessage.arguments.setupCommands]]
description = "Enable pretty-printing for gdb"
ignoreFailures = true
text = "-enable-pretty-printing"
[nix]
channel = "stable-22_11"
[gitHubImport]
requiredFiles = [".replit", "replit.nix", ".ccls-cache"]