Sha256: db239eae72e3aeb8b787e284b2b5483c9777e76231fc1c71a668aa964725b0e1
Contents?: true
Size: 710 Bytes
Versions: 17
Compression:
Stored size: 710 Bytes
Contents
= Examples == 1. Hello World! in C++ The Hello World! project should build and run as follows: $ cd 01_hello_world_cpp $ rake run Hello World! This is the simplest possible type of project: - Only one source file, - Rakefile and source file in the same directory, - no non-standard header or library dependencies. == 2. Hello World! in C Same as the above, but for C. == 3. Search Paths Source files and headers in different directories == 4. Zlib Library dependencies. == 5. Main Project and Tests In this case, there are two build projects, one for the main executable and one for tests. The tests are in the 'test' namespace. == 6. Hello World! in Objective-C Minimal project using NSLog.
Version data entries
17 entries across 17 versions & 1 rubygems