Fix damage done by automatic search-and-replace

This commit is contained in:
Benoit Jacob 2007-11-25 22:05:49 +00:00
parent 49c78643da
commit f14712a1a3
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
project(gen)
project(Eigen)
OPTION(BUILD_TESTS "Build tests" OFF)
OPTION(BUILD_EXAMPLES "Build examples" OFF)

View File

@ -7,7 +7,7 @@ SET(INCLUDE_INSTALL_DIR
FORCE)
INSTALL(FILES
${gen_SRCS}
${Eigen_SRCS}
DESTINATION ${INCLUDE_INSTALL_DIR}
)

View File

@ -1,6 +1,6 @@
FILE(GLOB Eigen_Core_SRCS "*.h")
INSTALL(FILES
${gen_Core_SRCS}
${Eigen_Core_SRCS}
DESTINATION ${INCLUDE_INSTALL_DIR}/Core
)

View File

@ -13,6 +13,6 @@ QT4_AUTOMOC(${test_SRCS})
ADD_EXECUTABLE(test ${test_SRCS})
TARGET_LINK_LIBRARIES(test ${QT_QTCORE_LIBRARY} ${QT_QTTEST_LIBRARY})
ADD_TEST(gen test)
ADD_TEST(Eigen test)
ENDIF(BUILD_TESTS)