Commit 5f370ce0 authored by Mccaskey, Alex's avatar Mccaskey, Alex
Browse files

fix bug in generating qcor_lang_ext pch

parent ce9c1b2d
Loading
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -43,12 +43,16 @@ file(GLOB HEADERS qcor.hpp
                  observable/qcor_observable.hpp 
                  optimizer/qcor_optimizer.hpp 
                  kernel/quantum_kernel.hpp 
                  qcor_lang_ext.hpp
                  qrt/qrt.hpp qrt/ir/*.hpp 
                  qrt/internal_compiler/qalloc 
                  qrt/internal_compiler/*.hpp
                  objectives/objective_function.hpp 
                  objectives/gradient_function.hpp
                  execution/taskInitiate.hpp
                  utils/qcor_utils.hpp
                  utils/qcor_pimpl.hpp)
                  utils/qcor_pimpl.hpp
                  jit/qcor_jit.hpp
                  qcor_lang_ext.hpp)

install(FILES ${HEADERS} DESTINATION include/qcor)
install(TARGETS ${LIBRARY_NAME} DESTINATION lib)
+0 −2
Original line number Diff line number Diff line
@@ -26,6 +26,4 @@ else()
  set_target_properties(${LIBRARY_NAME} PROPERTIES LINK_FLAGS "-shared")
endif()

install(FILES qcor_jit.hpp DESTINATION include/qcor)

install(TARGETS ${LIBRARY_NAME} DESTINATION lib)
+0 −2
Original line number Diff line number Diff line
@@ -19,8 +19,6 @@ else()
  set_target_properties(${LIBRARY_NAME} PROPERTIES LINK_FLAGS "-shared")
endif()

file(GLOB HEADERS qrt.hpp ir/*.hpp internal_compiler/qalloc internal_compiler/*.hpp)
install(FILES ${HEADERS} DESTINATION include/qcor)
install(TARGETS ${LIBRARY_NAME} DESTINATION lib)

add_subdirectory(impls)
 No newline at end of file