Skip to content

Commit a89429b

Browse files
author
kr-2003
committed
reversed changes
1 parent a51b62c commit a89429b

File tree

2 files changed

+63
-0
lines changed

2 files changed

+63
-0
lines changed

.vscode/settings.json

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"files.associations": {
3+
"__verbose_abort": "cpp",
4+
"cmath": "cpp",
5+
"cstddef": "cpp",
6+
"cstdint": "cpp",
7+
"cstdio": "cpp",
8+
"cstdlib": "cpp",
9+
"cstring": "cpp",
10+
"cwchar": "cpp",
11+
"cwctype": "cpp",
12+
"initializer_list": "cpp",
13+
"iosfwd": "cpp",
14+
"limits": "cpp",
15+
"new": "cpp",
16+
"stdexcept": "cpp",
17+
"string": "cpp",
18+
"string_view": "cpp",
19+
"tuple": "cpp",
20+
"typeinfo": "cpp",
21+
"__bit_reference": "cpp",
22+
"__hash_table": "cpp",
23+
"__locale": "cpp",
24+
"__node_handle": "cpp",
25+
"__split_buffer": "cpp",
26+
"array": "cpp",
27+
"bitset": "cpp",
28+
"cctype": "cpp",
29+
"clocale": "cpp",
30+
"cstdarg": "cpp",
31+
"ctime": "cpp",
32+
"deque": "cpp",
33+
"execution": "cpp",
34+
"ios": "cpp",
35+
"istream": "cpp",
36+
"locale": "cpp",
37+
"mutex": "cpp",
38+
"optional": "cpp",
39+
"print": "cpp",
40+
"queue": "cpp",
41+
"ratio": "cpp",
42+
"sstream": "cpp",
43+
"stack": "cpp",
44+
"streambuf": "cpp",
45+
"unordered_map": "cpp",
46+
"variant": "cpp",
47+
"vector": "cpp",
48+
"algorithm": "cpp",
49+
"ostream": "cpp",
50+
"iostream": "cpp",
51+
"fstream": "cpp",
52+
"future": "cpp",
53+
"regex": "cpp"
54+
}
55+
}

CMakeLists.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -472,6 +472,14 @@ include(CMakePackageConfigHelpers)
472472

473473
set(XEUS_CPP_CMAKECONFIG_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}" CACHE STRING "install path for xeus-cppConfig.cmake")
474474

475+
if(NOT EMSCRIPTEN)
476+
install(DIRECTORY ${XCPP_TAGFILES_DIR}
477+
DESTINATION ${XEUS_CPP_DATA_DIR})
478+
479+
install(DIRECTORY ${XCPP_TAGCONFS_DIR}
480+
DESTINATION ${XEUS_CPP_CONF_DIR})
481+
endif()
482+
475483
# Install xeus-cpp and xeus-cpp-static
476484
if (XEUS_CPP_BUILD_SHARED)
477485
install(TARGETS ${XEUS_CPP_TARGETS}

0 commit comments

Comments
 (0)