mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-15 06:41:21 +00:00
64 lines
1.7 KiB
CMake
64 lines
1.7 KiB
CMake
cmake_minimum_required(VERSION 2.6)
|
|
project(libvitaboy)
|
|
|
|
set(LIBVITABOY_SERIES 0)
|
|
set(LIBVITABOY_MAJOR 0)
|
|
set(LIBVITABOY_MINOR 1)
|
|
|
|
set(LIBVITABOY_SOURCES
|
|
anim.cpp
|
|
apr.cpp
|
|
bnd.cpp
|
|
col.cpp
|
|
hag.cpp
|
|
libvitaboy.cpp
|
|
mesh.cpp
|
|
oft.cpp
|
|
po.cpp
|
|
skel.cpp
|
|
)
|
|
|
|
if(WIN32)
|
|
set(LIBVITABOY_SOURCES ${LIBVITABOY_SOURCES} resource.rc)
|
|
else()
|
|
add_definitions(-Dstricmp=strcasecmp)
|
|
endif()
|
|
|
|
include_directories(${FILEHANDLER_INCLUDE})
|
|
|
|
set(VITABOY_LIB)
|
|
if(BUILD_SHARED_LIBS)
|
|
add_library(libvitaboy_shared SHARED ${LIBVITABOY_SOURCES})
|
|
if(WIN32)
|
|
set_target_properties(libvitaboy_shared PROPERTIES OUTPUT_NAME "vitaboy${LIBVITABOY_SERIES}")
|
|
else()
|
|
set_target_properties(libvitaboy_shared PROPERTIES OUTPUT_NAME "vitaboy")
|
|
endif()
|
|
|
|
set_target_properties(libvitaboy_shared PROPERTIES
|
|
COMPILE_FLAGS "-fvisibility=default"
|
|
VERSION ${LIBVITABOY_SERIES}.${LIBVITABOY_MAJOR}.${LIBVITABOY_MINOR}
|
|
PREFIX "lib"
|
|
IMPORT_PREFIX "lib")
|
|
|
|
set(VITABOY_LIB libvitaboy_shared)
|
|
else()
|
|
#### Static library (uncomment to build)
|
|
add_library(libvitaboy_static STATIC ${LIBVITABOY_SOURCES})
|
|
set_target_properties(libvitaboy_static PROPERTIES
|
|
OUTPUT_NAME "vitaboy"
|
|
CLEAN_DIRECT_OUTPUT 1)
|
|
|
|
set(VITABOY_LIB libvitaboy_static)
|
|
endif() # BUILD_SHARED_LIBS
|
|
|
|
add_executable(vbparse vbparse.cpp)
|
|
target_link_libraries(vbparse ${VITABOY_LIB} FileHandler_static)
|
|
|
|
add_executable(Renderer ${GLDEMO_EXE} Renderer.cpp)
|
|
if(WIN32)
|
|
target_link_libraries(Renderer ${VITABOY_LIB} FileHandler_static libgldemo_static opengl32 glu32)
|
|
else()
|
|
#untested
|
|
target_link_libraries(Renderer ${VITABOY_LIB} FileHandler_static libgldemo_static Xxf86vm rt Xext X11 GL GLU)
|
|
endif()
|