X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/66b0686fe441796325c3b5738b1b880d15ce1ea6..1c3563f23aafca06d83fdeb5382756cb54c55549:/doc/HelloWorld/README diff --git a/doc/HelloWorld/README b/doc/HelloWorld/README deleted file mode 100644 index 2fcbf6976d..0000000000 --- a/doc/HelloWorld/README +++ /dev/null @@ -1,35 +0,0 @@ -This is a very simple example to explain how to compile with simgrid. - -1) How to compile an example: (HelloWorld) - -- Run "Git bash" (installed with git). -- Open HelloWorld Directory ('cd' command line). -- Create a build directory and change directory. (optional) -- Type 'cmake -G"Unix Makefiles" ' -- Run gmake -- You should obtain a runnable example ("HelloWorld.exe"). - -2) Content of this directory - -- HelloWorld.c - The example source file. -- CMakeLists.txt - It allows to configure the project. -- FindPCRE.cmake - Simgrid needs pcre regular expression. - This finds and links to the pcre library. -- README - This explaination. - -3) How to add and compile a new example - -- Put your source file into the helloWord directory. -- Edit CMakeLists.txt : - * In the Targets section add those two lines: - add_executable(TARGET_NAME SOURCES) - target_link_libraries(TARGET_NAME simgrid pcre) - * It creates a target called 'TARGET_NAME.exe' with the sources 'SOURCES'. -- To initialize your project, you'll need to run 'cmake -G"Unix Makefiles" .' -- To build you project, run "cmake ." -- Run "gmake" -- You should obtain "TARGET_NAME.exe". \ No newline at end of file