mirror of
https://github.com/ossrs/srs.git
synced 2025-11-23 19:34:05 +08:00
This PR renames the trunk/ide/ directory to trunk/cmake/ to better reflect its actual purpose. The directory contains CMake build configuration files used by multiple IDEs (CLion, VSCode), not IDE-specific files. * Directory rename: trunk/ide/ → trunk/cmake/ * Build output location: trunk/ide/vscode-build/ → trunk/cmake/build/ * CMakeLists.txt: Moved from trunk/ide/srs_clion/CMakeLists.txt to trunk/cmake/CMakeLists.txt
73 lines
2.0 KiB
JSON
73 lines
2.0 KiB
JSON
{
|
|
"cmake.sourceDirectory": "${workspaceFolder}/trunk/cmake",
|
|
"cmake.buildDirectory": "${workspaceFolder}/trunk/cmake/build",
|
|
"cmake.configureOnOpen": false,
|
|
"cmake.ctest.testExplorerIntegrationEnabled": false,
|
|
"testMate.cpp.test.advancedExecutables": [
|
|
"{build,Build,BUILD,out,Out,OUT}/**/*{test,Test,TEST}*",
|
|
"${workspaceFolder}/trunk/cmake/build/**/*{utest,test,Test,TEST}*"
|
|
],
|
|
"files.associations": {
|
|
"vector": "cpp",
|
|
"__hash_table": "cpp",
|
|
"__split_buffer": "cpp",
|
|
"__tree": "cpp",
|
|
"array": "cpp",
|
|
"bitset": "cpp",
|
|
"deque": "cpp",
|
|
"initializer_list": "cpp",
|
|
"list": "cpp",
|
|
"map": "cpp",
|
|
"queue": "cpp",
|
|
"set": "cpp",
|
|
"stack": "cpp",
|
|
"string": "cpp",
|
|
"string_view": "cpp",
|
|
"unordered_map": "cpp",
|
|
"__bit_reference": "cpp",
|
|
"__locale": "cpp",
|
|
"__node_handle": "cpp",
|
|
"__verbose_abort": "cpp",
|
|
"any": "cpp",
|
|
"cctype": "cpp",
|
|
"charconv": "cpp",
|
|
"clocale": "cpp",
|
|
"cmath": "cpp",
|
|
"complex": "cpp",
|
|
"condition_variable": "cpp",
|
|
"csignal": "cpp",
|
|
"cstdarg": "cpp",
|
|
"cstdint": "cpp",
|
|
"cstdio": "cpp",
|
|
"cstdlib": "cpp",
|
|
"cstring": "cpp",
|
|
"ctime": "cpp",
|
|
"cwchar": "cpp",
|
|
"cwctype": "cpp",
|
|
"execution": "cpp",
|
|
"memory": "cpp",
|
|
"forward_list": "cpp",
|
|
"fstream": "cpp",
|
|
"iomanip": "cpp",
|
|
"ios": "cpp",
|
|
"iosfwd": "cpp",
|
|
"iostream": "cpp",
|
|
"istream": "cpp",
|
|
"limits": "cpp",
|
|
"locale": "cpp",
|
|
"mutex": "cpp",
|
|
"new": "cpp",
|
|
"optional": "cpp",
|
|
"print": "cpp",
|
|
"ratio": "cpp",
|
|
"sstream": "cpp",
|
|
"stdexcept": "cpp",
|
|
"streambuf": "cpp",
|
|
"typeinfo": "cpp",
|
|
"variant": "cpp",
|
|
"algorithm": "cpp",
|
|
"span": "cpp",
|
|
"unordered_set": "cpp"
|
|
}
|
|
}
|