diff options
author | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-09 13:29:22 (GMT) |
---|---|---|
committer | Magnus Lundborg <lundborg.magnus@gmail.com> | 2013-10-09 15:14:32 (GMT) |
commit | 5efad15b0254e6b2dc213865e88d8a1ea7419454 (patch) | |
tree | 7abca9d59e2c243d4897f942be4f0c831c2d07df /CMakeLists.txt | |
parent | ea37cbf48b84b75a9ec535af679d6104757e4271 (diff) |
Fix build issues.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 496a830..f91d747 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,10 +2,10 @@ cmake_minimum_required(VERSION 2.8) set(CMAKE_C_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -Wall") -project(TRAJECTORY) +project(TNG_IO) set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib) -include_directories(${CMAKE_SOURCE_DIR}/include) +include_directories(${CMAKE_SOURCE_DIR}/include ${CMAKE_SOURCE_DIR}/include/compression) option(BUILD_FORTRAN "Build Fortran compatible library and examples for testing" OFF) @@ -47,4 +47,4 @@ if(BUILD_DOCUMENTATION) SOURCES ${PROJECT_BINARY_DIR}/Doxyfile) # IF you do NOT want the documentation to be generated EVERY time you build the project # then leave out the 'ALL' keyword from the above command. -endif()
\ No newline at end of file +endif() |