mirror of
https://github.com/triqs/dft_tools
synced 2024-11-01 11:43:47 +01:00
17 lines
446 B
CMake
17 lines
446 B
CMake
|
# some specific flags for tests...
|
||
|
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x")
|
||
|
include_directories( ${CMAKE_SOURCE_DIR} )
|
||
|
|
||
|
SET( link_libs ${LAPACK_LIBS} ${BOOST_LIBRARY} )
|
||
|
IF(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||
|
list (REMOVE_DUPLICATES link_libs)
|
||
|
ENDIF( ${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||
|
link_libraries( ${link_libs} triqs)
|
||
|
|
||
|
add_subdirectory(triqs)
|
||
|
if (PythonSupport)
|
||
|
add_subdirectory(pytriqs)
|
||
|
endif()
|
||
|
add_subdirectory(speed)
|
||
|
|