You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
337 B
14 lines
337 B
5 years ago
|
project(JusticeLeagueWinRT CXX)
|
||
|
|
||
|
# create project
|
||
|
add_library(JusticeLeagueWinRT SHARED
|
||
|
"${CMAKE_CURRENT_SOURCE_DIR}/Batman.cpp"
|
||
|
"${CMAKE_CURRENT_SOURCE_DIR}/Batman.h"
|
||
|
)
|
||
|
|
||
|
set_target_properties(JusticeLeagueWinRT PROPERTIES
|
||
|
VS_WINRT_COMPONENT TRUE
|
||
|
VS_GLOBAL_ROOTNAMESPACE "JusticeLeagueWinRT"
|
||
|
OUTPUT_NAME "JusticeLeagueWinRT"
|
||
|
)
|