Files
ResInsight/CommonCode/CMakeLists.txt
Magne Sjaastad 14ee999d7e Fixed wrong variable name
p4#: 22267
2013-09-02 09:20:26 +02:00

35 lines
621 B
CMake

cmake_minimum_required (VERSION 2.8)
project (CommonCode)
# These headers need to go through Qt's MOC compiler
set( QOBJECT_HEADERS
cafMessagePanel.h
)
qt4_wrap_cpp( MOC_FILES_CPP ${QOBJECT_HEADERS} )
add_library( ${PROJECT_NAME}
cafEffectCache.cpp
cafEffectCache.h
cafEffectGenerator.cpp
cafEffectGenerator.h
cafLog.cpp
cafLog.h
cafMessagePanel.cpp
cafMessagePanel.h
cafMouseState.cpp
cafMouseState.h
cafUtils.cpp
cafUtils.h
cvfStructGrid.cpp
cvfStructGrid.h
cvfStructGridGeometryGenerator.cpp
cvfStructGridGeometryGenerator.h
cvfStructGridScalarDataAccess.h
${MOC_FILES_CPP}
)