Model files are zip archives with a "model.toml" file at the root describing the model and all its textures.
47 lines
1.4 KiB
CMake
47 lines
1.4 KiB
CMake
cmake_minimum_required( VERSION 3.0 )
|
|
project( Facecam2D VERSION 0.1.0 )
|
|
find_package( libzip REQUIRED )
|
|
find_package( OpenCV REQUIRED )
|
|
message (STATUS "Found OpenCV at: " ${OpenCV_INCLUDE_DIRS} )
|
|
find_package( OpenGL REQUIRED )
|
|
message (STATUS "Found OpenGL at: " ${OPENGL_INCLUDE_DIR} )
|
|
find_package( GLEW REQUIRED )
|
|
message (STATUS "Found GLEW at: " ${GLEW_INCLUDE_DIRS} )
|
|
find_package( glm REQUIRED )
|
|
message (STATUS "Found glm at: " ${GLM_INCLUDE_DIRS} )
|
|
find_package( FreeGLUT REQUIRED )
|
|
message (STATUS "Found FreeGLUT at: " ${GLUT_INCLUDE_DIR} )
|
|
include_directories( ${OpenCV_INCLUDE_DIRS} )
|
|
include_directories( ${OPENGL_INCLUDE_DIR} )
|
|
include_directories( ${GLEW_INCLUDE_DIRS} )
|
|
include_directories( ${GLM_INCLUDE_DIRS} )
|
|
include_directories( ${GLUT_INCLUDE_DIR} )
|
|
include_directories( ${PROJECT_SOURCE_DIR}/src )
|
|
configure_file( ${PROJECT_SOURCE_DIR}/src/config.hpp.in ${PROJECT_SOURCE_DIR}/src/config.hpp @ONLY )
|
|
file(
|
|
COPY
|
|
${PROJECT_SOURCE_DIR}/models
|
|
${PROJECT_SOURCE_DIR}/cvdata
|
|
|
|
DESTINATION
|
|
${PROJECT_BINARY_DIR} )
|
|
if (APPLE)
|
|
file (
|
|
COPY
|
|
${PROJECT_SOURCE_DIR}/Info.plist
|
|
DESTINATION
|
|
$ {PROJECT_BINARY_DIR} )
|
|
endif (APPLE)
|
|
add_executable( fc2d
|
|
src/main.cpp
|
|
src/graphics.cpp
|
|
src/modelpart.cpp
|
|
src/cv.cpp
|
|
src/paths.cpp
|
|
src/args.cpp
|
|
src/model.cpp
|
|
src/toml.c
|
|
src/tomlcpp.cpp
|
|
)
|
|
target_link_libraries( fc2d ${OpenCV_LIBS} ${OPENGL_LIBRARIES} FreeGLUT::freeglut GLEW::glew zip )
|