1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-03-29 16:06:44 +00:00

Minor cleanup

This commit is contained in:
scrawl 2014-08-26 17:31:34 +02:00
parent 4f92044d71
commit c5fa7bf7c2

View file

@ -1,16 +1,13 @@
# local files # local files
if (NOT ANDROID)
set(GAME set(GAME
main.cpp main.cpp
engine.cpp engine.cpp
) )
else()
set(GAME if (ANDROID)
main.cpp set(GAME ${GAME} android_main.c)
android_main.c
engine.cpp
)
endif() endif()
if(NOT WIN32 AND NOT ANDROID) if(NOT WIN32 AND NOT ANDROID)
set(GAME ${GAME} crashcatcher.cpp) set(GAME ${GAME} crashcatcher.cpp)
endif() endif()