mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-15 00:01:21 +00:00
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.
11 lines
288 B
CMake
11 lines
288 B
CMake
if(WIN32)
|
|
set(GLDEMO_EXE WIN32)
|
|
set(GLDEMO_LIBS mingw32 libgldemo_static opengl32 glu32)
|
|
else()
|
|
set(GLDEMO_EXE "")
|
|
set(GLDEMO_LIBS libgldemo_static Xxf86vm rt Xext X11 GL GLU)
|
|
endif()
|
|
|
|
add_subdirectory(FileHandler)
|
|
add_subdirectory(libgldemo)
|
|
add_subdirectory(libvitaboy)
|