1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
set(app-bittorrent_files Main Common Connection MessageTask Peer Tracker TrackerTask)
set(app-centralizedmutex_files Main Coordinator GrantTask Node ReleaseTask RequestTask)
set(app-masterworker_files Main Master Worker)
set(app-pingpong_files Main PingPongTask Receiver Sender)
set(app-tokenring_files Main RelayRunner)
set(async-waitall_files Main Receiver Sender)
set(async-yield_files Main Yielder)
set(async-dsend_files Main Receiver Sender)
set(cloud-masterworker_files Main Master Worker)
set(cloud-migration_files Main Daemon Test TestHostOnOff XVM)
set(dht-chord_files Main ChordTask Common FindSuccessorAnswerTask FindSuccessorTask
GetPredecessorAnswerTask GetPredecessorTask Node NotifyTask)
set(dht-kademlia_files Main Answer Bucket Common Contact FindNodeAnswerTask FindNodeTask
KademliaTask Node PingAnswerTask PingTask RoutingTable)
set(trace-pingpong_files Main PingPongTask Receiver Sender)
set(energy-consumption_files Main EnergyConsumer)
set(energy-pstate_files Main PstateRunner)
set(energy-vm_files Main EnergyVMRunner)
set(io-file_files Main Node)
set(io-storage_files Main Client)
set(process-kill_files Main Killer Victim)
set(process-migration_files Main Emigrant Policeman)
set(process-startkilltime_files Main Sleeper)
set(process-suspend_files Main DreamMaster LazyGuy)
set(task-priority_files Main Test)
if(enable_java)
add_custom_target(java-all
COMMENT "Building all Java examples..."
)
endif()
foreach (example app-bittorrent app-centralizedmutex app-masterworker app-pingpong app-tokenring async-yield async-waitall async-dsend
cloud-migration cloud-masterworker dht-chord dht-kademlia energy-consumption energy-pstate energy-vm io-file io-storage
process-kill process-migration process-startkilltime process-suspend task-priority trace-pingpong)
string (REPLACE "-" "/" example_dir ${example})
set (srcdir ${CMAKE_CURRENT_SOURCE_DIR}/${example_dir})
foreach (filename ${${example}_files} )
set( ${example}_sources "${${example}_sources}" "${srcdir}/${filename}.java")
endforeach()
if(enable_java)
add_custom_command(
COMMENT "Building java-${example}..."
OUTPUT ${example_dir}/java-${example}_compiled
DEPENDS ${example_sources} simgrid-java_jar ${SIMGRID_JAR}
COMMAND ${CMAKE_COMMAND} -E make_directory ${example_dir}
COMMAND ${JAVA_COMPILE} -classpath ${SIMGRID_JAR} -d ${CMAKE_CURRENT_BINARY_DIR} ${${example}_sources}
COMMAND ${CMAKE_COMMAND} -E remove ${example_dir}/java-${example}_compiled
COMMAND ${CMAKE_COMMAND} -E touch ${example_dir}/java-${example}_compiled
)
add_custom_target(java-${example} ALL DEPENDS ${example_dir}/java-${example}_compiled)
add_dependencies(java-all java-${example})
endif()
set(examples_src ${examples_src} ${${example}_sources})
set(tesh_files ${tesh_files} ${CMAKE_CURRENT_SOURCE_DIR}/${example_dir}/${example}.tesh)
endforeach()
set(examples_src ${examples_src} PARENT_SCOPE)
set(tesh_files ${tesh_files} PARENT_SCOPE)
set(bin_files ${bin_files} ${CMAKE_CURRENT_SOURCE_DIR}/app/bittorrent/generate.py PARENT_SCOPE)
set(txt_files ${txt_files} ${CMAKE_CURRENT_SOURCE_DIR}/app/masterworker/README
${CMAKE_CURRENT_SOURCE_DIR}/cloud/migration/README PARENT_SCOPE)
set(xml_files ${xml_files} ${CMAKE_CURRENT_SOURCE_DIR}/app/bittorrent/bittorrent.xml
${CMAKE_CURRENT_SOURCE_DIR}/app/centralizedmutex/centralizedmutex.xml
${CMAKE_CURRENT_SOURCE_DIR}/app/masterworker/masterworker.xml
${CMAKE_CURRENT_SOURCE_DIR}/dht/chord/chord.xml
${CMAKE_CURRENT_SOURCE_DIR}/dht/kademlia/kademlia.xml
${CMAKE_CURRENT_SOURCE_DIR}/process/startkilltime/startkilltime.xml
${CMAKE_CURRENT_SOURCE_DIR}/task/priority/priority.xml PARENT_SCOPE)
if(enable_java)
foreach (example app-bittorrent app-centralizedmutex app-masterworker app-pingpong app-tokenring async-yield async-waitall async-dsend
cloud-migration cloud-masterworker dht-chord dht-kademlia energy-consumption energy-pstate energy-vm io-file io-storage
process-kill process-migration process-startkilltime process-suspend task-priority trace-pingpong)
string (REPLACE "-" "/" example_dir ${example})
ADD_TESH(java-${example} --setenv srcdir=${CMAKE_HOME_DIRECTORY}/examples/java --setenv LD_LIBRARY_PATH=${CMAKE_BINARY_DIR}/lib --setenv classpath=${TESH_CLASSPATH} --cd ${CMAKE_BINARY_DIR}/examples/java/${example_dir} ${CMAKE_HOME_DIRECTORY}/examples/java/${example_dir}/${example}.tesh)
endforeach()
endif()
|