mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-21 09:11:20 +00:00
22 lines
No EOL
666 B
CMake
22 lines
No EOL
666 B
CMake
cmake_minimum_required(VERSION 2.6)
|
|
project(NiotsoClient)
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/Libraries/FileHandler)
|
|
include_directories(${CMAKE_SOURCE_DIR}/Libraries/freetype/include)
|
|
|
|
if(WIN32)
|
|
set(NIOTSOCLIENT_SOURCES
|
|
Client.cpp
|
|
Audio/Startup.cpp
|
|
Audio/windows/XAudio2.cpp
|
|
Graphics/Font.cpp
|
|
Graphics/Startup.cpp
|
|
Graphics/Viewport.cpp
|
|
resources/Resource.rc
|
|
Scene/LoginScreen/LoginScreen.cpp
|
|
System/System.cpp
|
|
Window/Window.cpp
|
|
)
|
|
add_executable(TSO WIN32 ${NIOTSOCLIENT_SOURCES})
|
|
target_link_libraries(TSO FileHandler_shared freetype_shared ole32 opengl32)
|
|
endif() |