Skip to content

Commit

Permalink
[master] fix another compilation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhrr committed Apr 17, 2018
1 parent d4d70ee commit 3ee57b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -302,12 +302,12 @@ install (TARGETS dale LIBRARY DESTINATION lib)

add_executable(daleci src/dale/daleci.cpp)
target_link_libraries (daleci dale)
set_target_properties (daleci PROPERTIES COMPILE_FLAGS "-I.")
set_target_properties (daleci PROPERTIES COMPILE_FLAGS "${LLVM_CXX_FLAGS} -I.")
install (TARGETS daleci DESTINATION bin)

add_executable(dalec src/dale/dalec.cpp)
target_link_libraries (dalec dale)
set_target_properties (dalec PROPERTIES COMPILE_FLAGS "-I.")
set_target_properties (dalec PROPERTIES COMPILE_FLAGS "${LLVM_CXX_FLAGS} -I.")
install (TARGETS dalec DESTINATION bin)

# Run tests.
Expand Down

0 comments on commit 3ee57b7

Please sign in to comment.