cafTensor: Added a library cmake file

This commit is contained in:
Jacob Støren 2015-06-17 10:58:22 +02:00
parent 30d41b9251
commit 245feea95d

View File

@ -0,0 +1,22 @@
cmake_minimum_required (VERSION 2.8)
project (cafTensor)
include_directories (
${LibCore_SOURCE_DIR}
)
set( PROJECT_FILES
cafTensor3.cpp
cafTensor3.h
cafTensor3.inl
)
add_library( ${PROJECT_NAME}
${PROJECT_FILES}
)
target_link_libraries( ${PROJECT_NAME} LibCore )
source_group("" FILES ${PROJECT_FILES})