2021-07-16 11:14:21 +02:00
|
|
|
project(SteamSDK LANGUAGES CXX)
|
|
|
|
|
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
|
|
set(CMAKE_AUTORCC ON)
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
|
|
|
2023-12-01 16:40:59 +01:00
|
|
|
find_package(Qt6 COMPONENTS Core Quick)
|
2021-07-16 11:14:21 +02:00
|
|
|
|
|
|
|
set(HEADER
|
|
|
|
public/steam/isteamapplist.h
|
|
|
|
public/steam/isteamapps.h
|
|
|
|
public/steam/isteamappticket.h
|
|
|
|
public/steam/isteamclient.h
|
|
|
|
public/steam/isteamcontroller.h
|
|
|
|
public/steam/isteamfriends.h
|
|
|
|
public/steam/isteamgamecoordinator.h
|
|
|
|
public/steam/isteamgameserver.h
|
|
|
|
public/steam/isteamgameserverstats.h
|
|
|
|
public/steam/isteamhtmlsurface.h
|
|
|
|
public/steam/isteamhttp.h
|
|
|
|
public/steam/isteaminput.h
|
|
|
|
public/steam/isteaminventory.h
|
|
|
|
public/steam/isteammatchmaking.h
|
|
|
|
public/steam/isteammusic.h
|
|
|
|
public/steam/isteammusicremote.h
|
|
|
|
public/steam/isteamnetworking.h
|
|
|
|
public/steam/isteamnetworkingmessages.h
|
|
|
|
public/steam/isteamnetworkingsockets.h
|
|
|
|
public/steam/isteamnetworkingutils.h
|
|
|
|
public/steam/isteamparentalsettings.h
|
|
|
|
public/steam/isteamps3overlayrenderer.h
|
|
|
|
public/steam/isteamremoteplay.h
|
|
|
|
public/steam/isteamremotestorage.h
|
|
|
|
public/steam/isteamscreenshots.h
|
2021-10-10 11:47:20 +02:00
|
|
|
public/steam/isteamugc.h
|
|
|
|
public/steam/isteamuser.h
|
|
|
|
public/steam/isteamuserstats.h
|
|
|
|
public/steam/isteamutils.h
|
|
|
|
public/steam/isteamvideo.h
|
|
|
|
public/steam/matchmakingtypes.h
|
|
|
|
public/steam/steam_api_common.h
|
|
|
|
public/steam/steam_api_flat.h
|
|
|
|
public/steam/steam_api_internal.h
|
|
|
|
public/steam/steam_api.h
|
|
|
|
public/steam/steam_gameserver.h
|
|
|
|
public/steam/steamclientpublic.h
|
|
|
|
public/steam/steamencryptedappticket.h
|
|
|
|
public/steam/steamhttpenums.h
|
|
|
|
public/steam/steamnetworkingtypes.h
|
|
|
|
public/steam/steamps3params.h
|
|
|
|
public/steam/steamtypes.h
|
2021-12-31 13:32:37 +01:00
|
|
|
public/steam/steamuniverse.h)
|
2021-11-13 14:47:43 +01:00
|
|
|
|
|
|
|
if(${SCREENPLAY_STEAM})
|
2022-04-04 18:06:43 +02:00
|
|
|
qt_add_library(${PROJECT_NAME} STATIC ${HEADER})
|
2021-11-13 14:47:43 +01:00
|
|
|
target_include_directories(${PROJECT_NAME} PUBLIC public/)
|
2023-12-01 16:40:59 +01:00
|
|
|
target_link_libraries(${PROJECT_NAME} PUBLIC ScreenPlayUtil)
|
2021-11-13 14:47:43 +01:00
|
|
|
endif()
|