2013-06-21 13:47:23 -06:00
|
|
|
PROJECT (rendermax)
|
2013-06-21 18:45:42 -06:00
|
|
|
|
2013-06-21 13:47:23 -06:00
|
|
|
# A list of source files
|
|
|
|
SET(PROJECT_SRCS
|
|
|
|
rendermax.cpp
|
2013-06-23 10:25:42 -06:00
|
|
|
renderer_light.cpp
|
2013-06-21 13:47:23 -06:00
|
|
|
)
|
|
|
|
# A list of headers
|
|
|
|
SET(PROJECT_HDRS
|
|
|
|
renderer_opengl.hpp
|
2013-06-23 10:25:42 -06:00
|
|
|
renderer_light.hpp
|
2013-06-21 13:47:23 -06:00
|
|
|
)
|
|
|
|
SET_SOURCE_FILES_PROPERTIES( ${PROJECT_HDRS} PROPERTIES HEADER_FILE_ONLY TRUE)
|
|
|
|
|
|
|
|
# mash them together (headers are marked as headers and nothing will try to compile them)
|
|
|
|
LIST(APPEND PROJECT_SRCS ${PROJECT_HDRS})
|
2013-06-21 18:45:42 -06:00
|
|
|
|
2013-06-21 13:47:23 -06:00
|
|
|
|
|
|
|
#linux
|
|
|
|
IF(UNIX)
|
|
|
|
add_definitions(-DLINUX_BUILD)
|
|
|
|
SET(PROJECT_LIBS
|
|
|
|
# add any extra linux libs here
|
2013-06-22 08:40:52 -06:00
|
|
|
lua
|
2013-06-26 07:42:14 -06:00
|
|
|
dfhack-tinythread
|
2013-06-21 13:47:23 -06:00
|
|
|
${PROJECT_LIBS}
|
|
|
|
)
|
|
|
|
# windows
|
|
|
|
ELSE(UNIX)
|
|
|
|
SET(PROJECT_LIBS
|
|
|
|
# add any extra windows libs here
|
2013-06-22 08:40:52 -06:00
|
|
|
lua
|
2013-06-26 07:42:14 -06:00
|
|
|
dfhack-tinythread
|
2013-06-21 13:47:23 -06:00
|
|
|
${PROJECT_LIBS}
|
|
|
|
$(NOINHERIT)
|
|
|
|
)
|
|
|
|
ENDIF(UNIX)
|
|
|
|
# this makes sure all the stuff is put in proper places and linked to dfhack
|
|
|
|
DFHACK_PLUGIN(rendermax ${PROJECT_SRCS} LINK_LIBRARIES ${PROJECT_LIBS})
|
2013-06-25 05:14:44 -06:00
|
|
|
install(FILES rendermax.lua
|
2014-05-04 12:00:16 -06:00
|
|
|
DESTINATION ${DFHACK_DATA_DESTINATION}/raw)
|