forked from facebookarchive/ds2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a WinStore-x86_64 cmake toolchain
- Loading branch information
Showing
2 changed files
with
19 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
## | ||
## Copyright (c) 2014-present, Facebook, Inc. | ||
## All rights reserved. | ||
## | ||
## This source code is licensed under the University of Illinois/NCSA Open | ||
## Source License found in the LICENSE file in the root directory of this | ||
## source tree. An additional grant of patent rights can be found in the | ||
## PATENTS file in the same directory. | ||
## | ||
|
||
set(CMAKE_SYSTEM_NAME WindowsStore) | ||
set(CMAKE_SYSTEM_VERSION 10.0) | ||
set(CMAKE_GENERATOR_PLATFORM x64) | ||
|
||
# For WinStore we build as a library because creating a process seems | ||
# restricted, so we just have a separate process open `ds2.dll` and run `main` | ||
# from it. | ||
set(LIBRARY 1) |