mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
parent
76f190024d
commit
b9bb61259f
3 changed files with 148 additions and 0 deletions
10
docs/ide4c/vscode/README.md
Normal file
10
docs/ide4c/vscode/README.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
<!--- © 2020 and later: Unicode, Inc. and others. --->
|
||||
<!--- License & terms of use: http://www.unicode.org/copyright.html#License --->
|
||||
|
||||
# Configuring VS Code for ICU4C
|
||||
|
||||
- create `.vscode` folder in icu4c/source
|
||||
- Copy `tasks.json` and `launch.json` files into `.vscode` folder
|
||||
|
||||
NOTE
|
||||
Before you build `icu4c` from vs code. run [`./runConfigureICU` command first](http://userguide.icu-project.org/icufaq).
|
100
docs/ide4c/vscode/launch.json
Normal file
100
docs/ide4c/vscode/launch.json
Normal file
|
@ -0,0 +1,100 @@
|
|||
// © 2020 and later: Unicode, Inc. and others.
|
||||
// License & terms of use: http://www.unicode.org/copyright.html#License
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"name": "intltest Launch",
|
||||
"type": "cppdbg",
|
||||
"request": "launch",
|
||||
"targetArchitecture": "x64",
|
||||
"program": "${workspaceFolder}/test/intltest/intltest",
|
||||
"environment": [
|
||||
{
|
||||
"name": "LD_LIBRARY_PATH", // Use "DYLD_LIBRARY_PATH" for mac osx.
|
||||
"value": "${workspaceRoot}/lib:${workspaceRoot}/stubdata:${workspaceRoot}/tools/ctestfw"
|
||||
},
|
||||
{
|
||||
"name": "ICU_DATA",
|
||||
"value": "${workspaceRoot}/data/out"
|
||||
}
|
||||
],
|
||||
"args": [ // Here you add which test cases you want to run, leaving it empty will run all the test cases.
|
||||
"rbbi/RBBITest" // Just for example.
|
||||
],
|
||||
"stopAtEntry": false, // If you want to add a break point in the beginning of the program (i.e. test cases).
|
||||
"cwd": "${workspaceFolder}",
|
||||
"externalConsole": false, //set to true to see output in an external terminal instead
|
||||
"MIMode": "gdb", // Use "lldb" for mac osx.
|
||||
"logging": {
|
||||
"trace": true,
|
||||
"traceResponse": true,
|
||||
"engineLogging": true,
|
||||
"programOutput": true
|
||||
},
|
||||
"preLaunchTask": "buildTest"
|
||||
},
|
||||
{
|
||||
"name": "cintltst Launch",
|
||||
"type": "cppdbg",
|
||||
"request": "launch",
|
||||
"targetArchitecture": "x64",
|
||||
"program": "${workspaceFolder}/test/cintltst/cintltst",
|
||||
"environment": [
|
||||
{
|
||||
"name": "LD_LIBRARY_PATH", // Use "DYLD_LIBRARY_PATH" for mac osx.
|
||||
"value": "${workspaceRoot}/lib:${workspaceRoot}/stubdata:${workspaceRoot}/tools/ctestfw"
|
||||
},
|
||||
{
|
||||
"name": "ICU_DATA",
|
||||
"value": "${workspaceRoot}/data/out"
|
||||
}
|
||||
],
|
||||
"args": [ // Here you add which test cases you want to run, leaving it empty will run all the test cases.
|
||||
"/tsutil/cstrcase" // Just for example.
|
||||
],
|
||||
"stopAtEntry": false, // If you want to add a break point in the beginning of the program (i.e. test cases).
|
||||
"cwd": "${workspaceFolder}",
|
||||
"externalConsole": false, //set to true to see output in an external terminal instead
|
||||
"MIMode": "gdb", // Use "lldb" for mac osx.
|
||||
"logging": {
|
||||
"trace": true,
|
||||
"traceResponse": true,
|
||||
"engineLogging": true,
|
||||
"programOutput": true
|
||||
},
|
||||
"preLaunchTask": "buildTest"
|
||||
},
|
||||
{
|
||||
"name": "iotest Launch",
|
||||
"type": "cppdbg",
|
||||
"request": "launch",
|
||||
"targetArchitecture": "x64",
|
||||
"program": "${workspaceFolder}/test/iotest/iotest",
|
||||
"environment": [
|
||||
{
|
||||
"name": "LD_LIBRARY_PATH", // Use "DYLD_LIBRARY_PATH" for mac osx.
|
||||
"value": "${workspaceRoot}/lib:${workspaceRoot}/stubdata:${workspaceRoot}/tools/ctestfw"
|
||||
},
|
||||
{
|
||||
"name": "ICU_DATA",
|
||||
"value": "${workspaceRoot}/data/out"
|
||||
}
|
||||
],
|
||||
"args": [ // Here you add which test cases you want to run, leaving it empty will run all the test cases.
|
||||
"/datadriv" // Just for example.
|
||||
],
|
||||
"stopAtEntry": false, // If you want to add a break point in the beginning of the program (i.e. test cases).
|
||||
"cwd": "${workspaceFolder}",
|
||||
"externalConsole": false, //set to true to see output in an external terminal instead
|
||||
"MIMode": "gdb", // Use "lldb" for mac osx.
|
||||
"logging": {
|
||||
"trace": true,
|
||||
"traceResponse": true,
|
||||
"engineLogging": true,
|
||||
"programOutput": true
|
||||
},
|
||||
"preLaunchTask": "buildTest"
|
||||
}
|
||||
]
|
||||
}
|
38
docs/ide4c/vscode/tasks.json
Normal file
38
docs/ide4c/vscode/tasks.json
Normal file
|
@ -0,0 +1,38 @@
|
|||
// © 2020 and later: Unicode, Inc. and others.
|
||||
// License & terms of use: http://www.unicode.org/copyright.html#License
|
||||
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "Makefile", // You can choose your own label.
|
||||
"type": "shell",
|
||||
"command": "make",
|
||||
// Make this the default build command.
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"presentation": {
|
||||
"reveal": "always"
|
||||
},
|
||||
// You can pass all the building arguments here.
|
||||
"args": [
|
||||
"all",
|
||||
"--debug", // Enable debug mode.
|
||||
"-j", // Use more than one core in parallel
|
||||
"-l90" // Use 90 percent of the CPU
|
||||
]
|
||||
},
|
||||
{
|
||||
"label": "buildTest", // for building test cases before running it.
|
||||
"command": "make", // Could be any other shell command
|
||||
"args": [
|
||||
"tests",
|
||||
"-j", // Use more than one core in parallel
|
||||
"-l90" // Use 90 percent of the CPU
|
||||
],
|
||||
"type": "shell"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Reference in a new issue