Commit 4bffed9 1 parent a0d987e commit 4bffed9 Copy full SHA for 4bffed9
File tree 6 files changed +31
-61
lines changed
6 files changed +31
-61
lines changed Original file line number Diff line number Diff line change 1
- .vscode / .easycpp
2
- /bin
1
+ / bin
2
+ /build
Original file line number Diff line number Diff line change 2
2
"version" : " 0.2.0" ,
3
3
"configurations" : [
4
4
{
5
- "name" : " C++ Debug (Windows)" ,
5
+ "name" : " (Windows) Launch " ,
6
6
"type" : " cppvsdbg" ,
7
7
"request" : " launch" ,
8
- "program" : " ${workspaceFolder}/bin/q2togbsp.exe" ,
9
- "preLaunchTask" : " Build C++ project" ,
10
- "args" : [" C:/Users/rtxa/Documents/q2togbsp/bin/g3dtest1_quake1.map" ,
11
- " C:/Users/rtxa/Documents/q2togbsp/bin/g3dtest1_q2togbsp.map"
12
- ],
8
+ // Resolved by CMake Tools:
9
+ "program" : " ${command:cmake.launchTargetPath}" ,
10
+ "args" : [
11
+ " C:/Users/rtxa/Documents/q2togbsp/bin/g3dtest1_quake1.map" ,
12
+ " C:/Users/rtxa/Documents/q2togbsp/bin/g3dtest1_q2togbsp.map"
13
+ ],
13
14
"stopAtEntry" : false ,
14
15
"cwd" : " ${workspaceFolder}" ,
15
- "environment" : [],
16
+ "environment" : [
17
+ {
18
+ // add the directory where our target was built to the PATHs
19
+ // it gets resolved by CMake Tools:
20
+ "name" : " PATH" ,
21
+ "value" : " $PATH:${command:cmake.launchTargetDirectory}"
22
+ }
23
+ ],
16
24
"externalConsole" : true ,
17
25
}
18
26
]
Original file line number Diff line number Diff line change 53
53
"xstddef" : " cpp" ,
54
54
"xtr1common" : " cpp"
55
55
},
56
- "terminal.integrated.shell.windows" : " cmd.exe"
56
+ "terminal.integrated.shell.windows" : " cmd.exe" ,
57
+ "C_Cpp.default.configurationProvider" : " ms-vscode.cmake-tools"
57
58
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ cmake_minimum_required (VERSION 3.0.0)
2
+
3
+ project (q2togbsp)
4
+ set (EXECUTABLE_OUTPUT_PATH ./${CMAKE_BUILD_TYPE} )
5
+
6
+ file (
7
+ GLOB_RECURSE
8
+ MY_SOURCE_FILES
9
+ src/*
10
+ )
11
+
12
+ add_executable (${PROJECT_NAME} ${MY_SOURCE_FILES} )
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments