Skip to content

Commit

Permalink
set proper include directory for target ced
Browse files Browse the repository at this point in the history
  • Loading branch information
Sébastien Gonzalve committed Jul 5, 2021
1 parent 37529e6 commit e464810
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Expand Up @@ -58,8 +58,6 @@ set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)

include_directories(${CMAKE_SOURCE_DIR})

set(CED_LIBRARY_SOURCES
compact_enc_det/compact_enc_det.cc
compact_enc_det/compact_enc_det_hint_code.cc
Expand All @@ -69,6 +67,8 @@ set(CED_LIBRARY_SOURCES

add_library(ced ${CED_LIBRARY_SOURCES})

target_include_directories(ced PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})

# Uncomment to put CED into WHATWG-compliant mode.
#add_definitions(-DHTML5_MODE)

Expand Down

0 comments on commit e464810

Please sign in to comment.