X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4251386bc4f6b572a0660c6a8cb56545e30d1cbc..8f5616991169add56ea7c07404728ffd9bc45097:/doc/HelloWorld/README diff --git a/doc/HelloWorld/README b/doc/HelloWorld/README index 43b88f7caa..67b0585fd9 100644 --- a/doc/HelloWorld/README +++ b/doc/HelloWorld/README @@ -15,9 +15,6 @@ This is a very simple example to explain how to compile with simgrid. 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 (Normally included into Simgrid directory "GnuWin32"). - README This explaination. @@ -27,7 +24,7 @@ This is a very simple example to explain how to compile with simgrid. - Edit CMakeLists.txt : * In the Targets section add those two lines: add_executable(TARGET_NAME SOURCES) - target_link_libraries(TARGET_NAME simgrid pcre) + target_link_libraries(TARGET_NAME simgrid) * 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 ."