mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-21 02:31:21 +00:00
New client code for Windows. The window does not appear until the OpenGL rendering context has completely initialized and (one day) has the first frame ready to draw.
16 lines
No EOL
413 B
CMake
16 lines
No EOL
413 B
CMake
cmake_minimum_required(VERSION 2.6)
|
|
project(NiotsoClient)
|
|
|
|
if(WIN32)
|
|
set(NIOTSOCLIENT_SOURCES
|
|
Client.cpp
|
|
MessageHandler.cpp
|
|
Audio/Startup.cpp
|
|
Graphics/Startup.cpp
|
|
Graphics/Viewport.cpp
|
|
resources/Resource.rc
|
|
System/System.cpp
|
|
)
|
|
add_executable(TSO WIN32 ${NIOTSOCLIENT_SOURCES})
|
|
target_link_libraries(TSO ole32 opengl32)
|
|
endif() |