Include 3rdparty CMakeLists.txt
This commit is contained in:
parent
a697301c44
commit
7754043252
2 changed files with 7 additions and 0 deletions
6
3rdparty/CMakeLists.txt
vendored
Normal file
6
3rdparty/CMakeLists.txt
vendored
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
include_directories("${PROJECT_SOURCE_DIR}/3rdparty ${PROJECT_SOURCE_DIR}")
|
||||||
|
set(lib3rdparty_SRCS zmalloc.c)
|
||||||
|
add_library(3rdparty STATIC ${lib3rdparty_SRCS})
|
||||||
|
# add_library(r3 SHARED ${libr3_SRCS})
|
||||||
|
# target_link_libraries(r3 cblas)
|
||||||
|
# install(FILES ${libswiftnav_HEADERS} DESTINATION include/libswiftnav)
|
|
@ -27,6 +27,7 @@ set(LIBS ${LIBS} ${PCRE_LIBRARIES} ${Judy_LIBRARIES} r3)
|
||||||
# set (CMAKE_CXX_FLAGS "-std=c++0x -arch x86_64 -stdlib=libc++ -g3 -Wall -O0")
|
# set (CMAKE_CXX_FLAGS "-std=c++0x -arch x86_64 -stdlib=libc++ -g3 -Wall -O0")
|
||||||
enable_testing()
|
enable_testing()
|
||||||
|
|
||||||
|
add_subdirectory(3rdparty)
|
||||||
add_subdirectory(src)
|
add_subdirectory(src)
|
||||||
add_subdirectory(tests)
|
add_subdirectory(tests)
|
||||||
# add_test(test_tree ${CMAKE_CURRENT_BINARY_DIR}/check_tree)
|
# add_test(test_tree ${CMAKE_CURRENT_BINARY_DIR}/check_tree)
|
||||||
|
|
Loading…
Reference in a new issue