-
Notifications
You must be signed in to change notification settings - Fork 0
/
binding.gyp
53 lines (53 loc) · 2.02 KB
/
binding.gyp
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
{
"targets": [
{
"msvs_windows_target_platform_version": "10.0.22621.0",
"target_name": "addon",
"msvs_settings": {
"VCCLCompilerTool": {
"ExceptionHandling": "1",
"AdditionalOptions": [
"-std:c++latest",
"/EHsc",
"/await"
]
}
},
"sources": [
"native-src/logger/Logger.cpp",
"native-src/logger/LoggerPath.cpp",
"native-src/main.cpp",
"native-src/placeholders_interface/PlaceHolderInfo.cpp",
"native-src/placeholders_interface/Planceholders.cpp",
"native-src/sync_root_interface/SyncRoot.cpp",
"native-src/sync_root_interface/Utilities.cpp",
"native-src/sync_root_interface/callbacks/Callbacks.cpp",
"native-src/sync_root_interface/callbacks/CancelFetchData/CancelFetchDataCallback.cpp",
"native-src/sync_root_interface/callbacks/FetchData/FetchData.cpp",
"native-src/sync_root_interface/callbacks/FetchData/FileCopierWithProgress.cpp",
"native-src/sync_root_interface/callbacks/FetchPlaceholder/FetchPlaceholder.cpp",
"native-src/sync_root_interface/callbacks/NotifyDelete/NotifyDeleteCallback.cpp",
"native-src/sync_root_interface/callbacks/NotifyFileAdded/NotifyFileAddedCallback.cpp",
"native-src/sync_root_interface/callbacks/NotifyMessage/NofifyMessageCallback.cpp",
"native-src/sync_root_interface/callbacks/NotifyRename/NotifyRenameCallback.cpp",
"native-src/sync_root_watcher/DirectoryWatcher.cpp",
"native-src/sync_root_watcher/SyncRootWatcher.cpp",
"native-src/virtual_drive/Wrappers.cpp"
],
"include_dirs": [
"include",
"include/logger",
"include/placeholders_interface",
"include/sync_root_interface",
"include/sync_root_interface/callbacks",
"include/sync_root_watcher",
"include/types",
"include/virtual_drive"
],
"libraries": [
"-lCldApi.lib",
"-lPropsys.lib"
]
}
]
}