mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-23 19:32:19 +00:00
* Implemented the rewrite of the iff library, submitted by Propeng. The linked list has been completely replaced with vectors or normal arrays. * Started work on the cur and tga parsers
46 lines
No EOL
1.3 KiB
CMake
46 lines
No EOL
1.3 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)
|
|
endif()
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/Libraries/FileHandler)
|
|
|
|
#### 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)
|
|
|
|
add_library(libvitaboy_shared SHARED ${LIBVITABOY_SOURCES})
|
|
set_target_properties(libvitaboy_shared PROPERTIES
|
|
OUTPUT_NAME "vitaboy${LIBVITABOY_SERIES}"
|
|
VERSION ${LIBVITABOY_SERIES}.${LIBVITABOY_MAJOR}.${LIBVITABOY_MINOR}
|
|
SOVERSION ${LIBVITABOY_SERIES}
|
|
# msvc does not prepend 'lib' - do it here to have consistent name
|
|
PREFIX "lib"
|
|
IMPORT_PREFIX "lib"
|
|
CLEAN_DIRECT_OUTPUT 1)
|
|
|
|
add_executable(vbparse vbparse.cpp)
|
|
target_link_libraries(vbparse libvitaboy_shared FileHandler_shared)
|
|
|
|
add_executable(Renderer Renderer.cpp)
|
|
target_link_libraries(Renderer libvitaboy_shared FileHandler_shared opengl32 glu32 winmm) |