dougbinks / enkiTS

A permissively licensed C and C++ Task Scheduler for creating parallel programs. Requires C++11 support.
zlib License
1.74k stars 145 forks source link

Renamed example executables #1

Closed gpakosz closed 9 years ago

gpakosz commented 9 years ago

I renamed example executables:

    example/Example.cpp          --> example/ParallelSum.cpp
    example/ExampleBenchmark.cpp --> example/ParallelSumBenchmark.cpp
    example/Example_c.c          --> example/ParallelSum_c.c

This prevents CMake from failing building them on case-insensitive filesystems.

dougbinks commented 9 years ago

Thanks! Merged this with some changes to all branches. I'm surprised you had problems with case insensitive filesystems, I've checked the project out on Win/Mac/Linux with no problems - however this naming is much better.

gpakosz commented 9 years ago

Thanks!

I have a case-insensitive filesystem on my Mac specifically to catch those kind of problems in our codebase :)

CMake bailed out right away.

dougbinks commented 9 years ago

Ah - I see, you're building into the root folder.

I wouldn't do that in general - I .gitignore the folder build so you can build from there. I'll add a note in readme.