niotso/Client/CMakeLists.txt
Andrew D'Addesio 227617b540 Moved to git
Assembla's decision to remove Trac incited us to ditch them entirely. Further, the repository no longer includes binaries or libraries; these can be downloaded from niotso.org/pub/ and updated with the included update-libraries script.
2012-10-17 03:21:00 -05:00

21 lines
No EOL
607 B
CMake

cmake_minimum_required(VERSION 2.6)
project(NiotsoClient)
include_directories(${FILEHANDLER_INCLUDE_DIR} ${FREETYPE_INCLUDE_DIR})
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()