Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
4880c53bb625645610920d40b7a81f220757119c
[simgrid.git] / examples / scala / master_slave_kill / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.6)
2
3 set(example scala_master_slave_kill)
4 set(sources
5   ${CMAKE_CURRENT_SOURCE_DIR}/FinalizeTask.scala
6   ${CMAKE_CURRENT_SOURCE_DIR}/Master.scala
7   ${CMAKE_CURRENT_SOURCE_DIR}/MsKill.scala
8   ${CMAKE_CURRENT_SOURCE_DIR}/Slave.scala
9   )
10
11 if(enable_scala)
12   add_custom_command(
13     COMMENT "Building ${example}..."
14     OUTPUT ${example}_compiled
15     DEPENDS ${sources} simgrid-java_jar ${SIMGRID_JAR}
16     COMMAND ${SCALA_COMPILE} -classpath ${SIMGRID_JAR}
17                              -d ${CMAKE_CURRENT_BINARY_DIR}/.. ${sources}
18     COMMAND ${CMAKE_COMMAND} -E remove ${example}_compiled
19     COMMAND ${CMAKE_COMMAND} -E touch ${example}_compiled
20   )
21   add_custom_target(${example} ALL DEPENDS ${example}_compiled)
22 endif()
23
24 set(tesh_files
25   ${tesh_files}
26   ${CMAKE_CURRENT_SOURCE_DIR}/kill.tesh
27   PARENT_SCOPE
28   )
29 set(xml_files
30   ${xml_files}
31   PARENT_SCOPE
32   )
33 set(examples_src
34   ${examples_src}
35   ${sources}
36   PARENT_SCOPE
37   )
38 set(bin_files
39   ${bin_files}
40   PARENT_SCOPE
41   )
42 set(txt_files
43   ${txt_files}
44   PARENT_SCOPE
45   )