graphmaster_lcr.cmake 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. ################################################################################
  2. # HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems®.
  3. #
  4. # Licensed under the Apache License, Version 2.0 (the "License");
  5. # you may not use this file except in compliance with the License.
  6. # You may obtain a copy of the License at
  7. #
  8. # http://www.apache.org/licenses/LICENSE-2.0
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. ################################################################################
  16. # Component: graphmaster_lcr
  17. #####################################################
  18. # Description:
  19. # ------------
  20. # Cmake Input File for graphmaster_lcr
  21. #####################################################
  22. project( graphmaster_lcr )
  23. set ( SRCS
  24. thgraphmaster.cpp
  25. )
  26. include_directories (
  27. ./../thorutil
  28. ./../../system/jhtree
  29. ./../../system/mp
  30. ./../master
  31. ./../../common/workunit
  32. ./../shared
  33. ./../graph
  34. ./../../common/deftype
  35. ./../../system/include
  36. ./../../dali/base
  37. ./../../rtl/include
  38. ./../../common/dllserver
  39. ./../slave
  40. ./../../system/jlib
  41. ./../thorcodectx
  42. ./../mfilemanager
  43. ./../activities
  44. ./../../rtl/eclrtl
  45. ./../../common/thorhelper
  46. )
  47. HPCC_ADD_LIBRARY( graphmaster_lcr SHARED ${SRCS} )
  48. set_target_properties(graphmaster_lcr PROPERTIES
  49. COMPILE_FLAGS -D_USRDLL
  50. DEFINE_SYMBOL GRAPHMASTER_EXPORTS )
  51. install ( TARGETS graphmaster_lcr RUNTIME DESTINATION ${EXEC_DIR} LIBRARY DESTINATION ${LIB_DIR} )
  52. target_link_libraries ( graphmaster_lcr
  53. jlib
  54. jhtree
  55. nbcd
  56. eclrtl
  57. deftype
  58. thorhelper
  59. remote
  60. dalibase
  61. dllserver
  62. workunit
  63. thorcodectx_lcr
  64. graph_lcr
  65. mfilemanager_lcr
  66. )