forked from microsoft/cpprestsdk
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added experimental support for building UWP. Added support for accessing NuGet packages. Renamed project to 'cpprest'. Removed superfluous ${LIB} prefix on all libs. Enabled MultiToolTask for android build. Added header files to the cpprest library, improving IDE support.
- Loading branch information
1 parent
5f75ec9
commit 834491e
Showing
21 changed files
with
258 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
add_executable(BingRequest bingrequest.cpp) | ||
target_link_libraries(BingRequest ${Casablanca_LIBRARIES}) | ||
if (NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) | ||
add_executable(BingRequest bingrequest.cpp) | ||
target_link_libraries(BingRequest ${Casablanca_LIBRARIES}) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
add_subdirectory(BlackJack_Server) | ||
add_subdirectory(BlackJack_Client) | ||
if (NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) | ||
add_subdirectory(BlackJack_Server) | ||
add_subdirectory(BlackJack_Client) | ||
else() | ||
# TODO: add BlackJack_UIClient | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
|
||
add_executable(oauth1client | ||
Oauth1Client.cpp | ||
stdafx.cpp | ||
) | ||
|
||
target_link_libraries(oauth1client ${Casablanca_LIBRARIES}) | ||
if (NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) | ||
add_executable(oauth1client | ||
Oauth1Client.cpp | ||
stdafx.cpp | ||
) | ||
|
||
target_link_libraries(oauth1client ${Casablanca_LIBRARIES}) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
if (NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) | ||
add_executable(oauth2client | ||
Oauth2Client.cpp | ||
stdafx.cpp | ||
) | ||
|
||
add_executable(oauth2client | ||
Oauth2Client.cpp | ||
stdafx.cpp | ||
) | ||
|
||
target_link_libraries(oauth2client ${Casablanca_LIBRARIES}) | ||
target_link_libraries(oauth2client ${Casablanca_LIBRARIES}) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
add_executable(SearchFile searchfile.cpp) | ||
target_link_libraries(SearchFile ${Casablanca_LIBRARIES}) | ||
if (NOT WINDOWS_STORE AND NOT WINDOWS_PHONE) | ||
add_executable(SearchFile searchfile.cpp) | ||
target_link_libraries(SearchFile ${Casablanca_LIBRARIES}) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.