-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBeefProj.toml
25 lines (19 loc) · 866 Bytes
/
BeefProj.toml
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
FileVersion = 1
[Project]
Name = "CurlBeef"
DefaultNamespace = "curl"
[Configs.Debug.Win32]
LibPaths = ["$(ProjectDir)/dist/win32/Debug/libcurl-d.lib"]
PostBuildCmds = ["CopyToDependents(\"$(ProjectDir)/dist/win32/Debug/*.dll\")"]
[Configs.Debug.Win64]
LibPaths = ["$(ProjectDir)/dist/win64/Debug/libcurl-d.lib"]
PostBuildCmds = ["CopyToDependents(\"$(ProjectDir)/dist/win64/Debug/*.dll\")"]
[Configs.Debug.Linux64]
OtherLinkFlags = "$(LinkFlags) -lcrypto -lcurl -lssl -lz"
LibPaths = ["L$(ProjectDir)/dist/linux64/ServerDebug/"]
[Configs.Release.Win32]
LibPaths = ["$(ProjectDir)/dist/win32/Release/libcurl.lib"]
PostBuildCmds = ["CopyToDependents(\"$(ProjectDir)/dist/win32/Release/*.dll\")"]
[Configs.Release.Win64]
LibPaths = ["$(ProjectDir)/dist/win64/Release/libcurl.lib"]
PostBuildCmds = ["CopyToDependents(\"$(ProjectDir)/dist/win64/Release/*.dll\")"]