3
0
mirror of https://github.com/triqs/dft_tools synced 2024-10-31 19:23:45 +01:00
dft_tools/examples/simple/CMakeLists.txt
Olivier Parcollet f2c7d449cc First commit : triqs libs version 1.0 alpha1
for earlier commits, see TRIQS0.x repository.
2013-07-17 19:24:07 +02:00

11 lines
292 B
CMake

list(APPEND CMAKE_MODULE_PATH ${TRIQS_PATH}/share/triqs/cmake)
cmake_minimum_required(VERSION 2.8)
project(myproj CXX)
set(CMAKE_BUILD_TYPE Release)
find_package(TRIQS)
add_executable(hdf5 hdf5.cpp)
include_directories(${TRIQS_INCLUDE_ALL})
target_link_libraries(hdf5 ${TRIQS_LIBRARY_ALL})