/alps/pcitool

To get this branch, use:
bzr branch http://suren.me/webbzr/alps/pcitool

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Suren A. Chilingaryan
  • Date: 2015-09-24 02:28:45 UTC
  • mfrom: (305.1.19 views)
  • Revision ID: csa@suren.me-20150924022845-p7hc8lh8v0q48g0r
Finalyze XML support and provide initial support for views (only descriptions so far)

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
 
34
34
find_package(PkgConfig REQUIRED)
35
35
find_package(Threads REQUIRED)
 
36
find_package(PythonLibs REQUIRED)
36
37
 
37
38
set(EXTRA_SYSTEM_LIBS -lrt)
38
39
 
39
40
check_include_files(stdatomic.h HAVE_STDATOMIC_H)
40
41
 
 
42
find_path(UTHASH_INCLUDE_DIRS uthash.h PATH_SUFFIXES uthash)
 
43
if (UTHASH_INCLUDE_DIRS)
 
44
    message ("uthash is found at ${UTHASH_INCLUDE_DIRS}")
 
45
else (UTHASH_INCLUDE_DIRS)
 
46
    message (FATAL_ERROR "uthash is not found...")
 
47
endif (UTHASH_INCLUDE_DIRS)
 
48
 
41
49
pkg_check_modules(LIBXML2 libxml-2.0 REQUIRED)
42
50
 
43
51
#Check in sibling directory
66
74
 
67
75
add_subdirectory(dma)
68
76
add_subdirectory(protocols)
 
77
add_subdirectory(views)
69
78
add_subdirectory(pcilib)
70
79
add_subdirectory(pcitool)
71
80
add_subdirectory(apps)