include: Move include dir to top level.
authorAndreas Schneider <asn@cryptomilk.org>
Mon, 15 Oct 2012 15:09:02 +0000 (17:09 +0200)
committerAndreas Schneider <asn@cryptomilk.org>
Mon, 15 Oct 2012 15:09:02 +0000 (17:09 +0200)
include/CMakeLists.txt [moved from src/include/CMakeLists.txt with 100% similarity]
include/cmocka.h [moved from src/include/cmocka.h with 100% similarity]
include/cmocka_private.h [moved from src/include/cmocka_private.h with 100% similarity]
src/CMakeLists.txt

similarity index 100%
rename from src/include/cmocka.h
rename to include/cmocka.h
index f4bd555..2de6b7b 100644 (file)
@@ -1,7 +1,7 @@
 project(cmocka-library C)
 
 set(CMOCKA_PUBLIC_INCLUDE_DIRS
-    ${CMAKE_SOURCE_DIR}/src/include
+    ${CMAKE_SOURCE_DIR}/include
     CACHE INTERNAL "cmocka public include directories"
 )
 
@@ -90,7 +90,6 @@ if (WITH_STATIC_LIB)
     )
 endif (WITH_STATIC_LIB)
 
-add_subdirectory(include)
 if (UNIT_TESTING)
     add_subdirectory(example)
 endif (UNIT_TESTING)