Skip to content

Commit

Permalink
Merge pull request #30 from SeadexGmbH/yasmine-1.5.1
Browse files Browse the repository at this point in the history
yasmine 1.5.1
  • Loading branch information
SeadexTM committed May 16, 2018
2 parents 908adc6 + 9bd74f8 commit e7aaf87
Show file tree
Hide file tree
Showing 62 changed files with 359 additions and 268 deletions.
7 changes: 5 additions & 2 deletions CMakeHelpers/addSpecificFlags.cmake
Expand Up @@ -12,15 +12,18 @@ if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" STREQ
add_compiler_flag("-pedantic")
endif()

if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
# for release
if( "${CMAKE_BUILD_TYPE}" STREQUAL "Release" )
add_compiler_flag("-03")
elseif("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
add_compiler_flag("-g")
endif()

if("${CPP_VERSION}" STREQUAL "03")
add_compiler_flag("-std=c++03")
add_compiler_flag("-D \"SX_CPP03_BOOST\"")
add_compiler_flag("-D \"SX_NO_VARIADIC_MACRO\"")
elseif("${CPP_VERSION}" STREQUAL "03")
elseif("${CPP_VERSION}" STREQUAL "14")
add_compiler_flag("-std=c++14")
else()
add_compiler_flag("-std=c++11")
Expand Down
2 changes: 1 addition & 1 deletion examples/events_with_parameters/downcast_event.hpp
Expand Up @@ -21,4 +21,4 @@ namespace examples
}


#endif
#endif
2 changes: 1 addition & 1 deletion examples/forty_two/main.cpp
Expand Up @@ -15,4 +15,4 @@
int main()
{
examples::forty_two _42( 100000 );
}
}
Expand Up @@ -12,15 +12,18 @@ if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" STREQ
add_compiler_flag("-pedantic")
endif()

if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
# for release
if( "${CMAKE_BUILD_TYPE}" STREQUAL "Release" )
add_compiler_flag("-03")
elseif("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
add_compiler_flag("-g")
endif()

if("${CPP_VERSION}" STREQUAL "03")
add_compiler_flag("-std=c++03")
add_compiler_flag("-D \"SX_CPP03_BOOST\"")
add_compiler_flag("-D \"SX_NO_VARIADIC_MACRO\"")
elseif("${CPP_VERSION}" STREQUAL "03")
elseif("${CPP_VERSION}" STREQUAL "14")
add_compiler_flag("-std=c++14")
else()
add_compiler_flag("-std=c++11")
Expand Down
17 changes: 17 additions & 0 deletions externals/essentials/source/changelog.txt
Expand Up @@ -15,6 +15,23 @@ All notable changes to this project are documented in this file.
� missing boost namespace in sxprintf


##[1.3.1] - 2017-08-14

### Changed
� CMake file improvements: Set C++-standard version (when using gcc) using CPP_VERSION with values '03' for C++03, '14' for C++14. Default is C++11.


##[1.3.0] - 2017-06-26


##[1.2.0] - 2017-04-25

### Changed
� internal structure update
� printf code improvements
� helper macro extended up to 15 parameters


##[1.1.0] - 2017-09-20

### Added
Expand Down
7 changes: 5 additions & 2 deletions externals/genesis/source/CMakeHelpers/addSpecificFlags.cmake
Expand Up @@ -12,15 +12,18 @@ if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" STREQ
add_compiler_flag("-pedantic")
endif()

if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
# for release
if( "${CMAKE_BUILD_TYPE}" STREQUAL "Release" )
add_compiler_flag("-03")
elseif("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
add_compiler_flag("-g")
endif()

if("${CPP_VERSION}" STREQUAL "03")
add_compiler_flag("-std=c++03")
add_compiler_flag("-D \"SX_CPP03_BOOST\"")
add_compiler_flag("-D \"SX_NO_VARIADIC_MACRO\"")
elseif("${CPP_VERSION}" STREQUAL "03")
elseif("${CPP_VERSION}" STREQUAL "14")
add_compiler_flag("-std=c++14")
else()
add_compiler_flag("-std=c++11")
Expand Down
Expand Up @@ -12,15 +12,18 @@ if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" STREQ
add_compiler_flag("-pedantic")
endif()

if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
# for release
if( "${CMAKE_BUILD_TYPE}" STREQUAL "Release" )
add_compiler_flag("-03")
elseif("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
add_compiler_flag("-g")
endif()

if("${CPP_VERSION}" STREQUAL "03")
add_compiler_flag("-std=c++03")
add_compiler_flag("-D \"SX_CPP03_BOOST\"")
add_compiler_flag("-D \"SX_NO_VARIADIC_MACRO\"")
elseif("${CPP_VERSION}" STREQUAL "03")
elseif("${CPP_VERSION}" STREQUAL "14")
add_compiler_flag("-std=c++14")
else()
add_compiler_flag("-std=c++11")
Expand Down
17 changes: 17 additions & 0 deletions externals/genesis/source/externals/essentials/source/changelog.txt
Expand Up @@ -15,6 +15,23 @@ All notable changes to this project are documented in this file.
� missing boost namespace in sxprintf


##[1.3.1] - 2017-08-14

### Changed
� CMake file improvements: Set C++-standard version (when using gcc) using CPP_VERSION with values '03' for C++03, '14' for C++14. Default is C++11.


##[1.3.0] - 2017-06-26


##[1.2.0] - 2017-04-25

### Changed
� internal structure update
� printf code improvements
� helper macro extended up to 15 parameters


##[1.1.0] - 2017-09-20

### Added
Expand Down
2 changes: 1 addition & 1 deletion externals/genesis/source/genesis/include/recipe_block.hpp
Expand Up @@ -56,4 +56,4 @@ class recipe_block : public recipe_step
}


#endif
#endif
Expand Up @@ -72,4 +72,4 @@ void condition_block::apply_modifier( bool& _result ) const
}


}
}
2 changes: 1 addition & 1 deletion externals/genesis/source/genesis/source/switch_block.cpp
Expand Up @@ -86,4 +86,4 @@ void switch_block::set_case_index( const int _index )
}


}
}
7 changes: 5 additions & 2 deletions externals/hermes/source/CMakeHelpers/addSpecificFlags.cmake
Expand Up @@ -12,15 +12,18 @@ if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" STREQ
add_compiler_flag("-pedantic")
endif()

if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
# for release
if( "${CMAKE_BUILD_TYPE}" STREQUAL "Release" )
add_compiler_flag("-03")
elseif("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
add_compiler_flag("-g")
endif()

if("${CPP_VERSION}" STREQUAL "03")
add_compiler_flag("-std=c++03")
add_compiler_flag("-D \"SX_CPP03_BOOST\"")
add_compiler_flag("-D \"SX_NO_VARIADIC_MACRO\"")
elseif("${CPP_VERSION}" STREQUAL "03")
elseif("${CPP_VERSION}" STREQUAL "14")
add_compiler_flag("-std=c++14")
else()
add_compiler_flag("-std=c++11")
Expand Down
Expand Up @@ -12,15 +12,18 @@ if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" STREQ
add_compiler_flag("-pedantic")
endif()

if("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
# for release
if( "${CMAKE_BUILD_TYPE}" STREQUAL "Release" )
add_compiler_flag("-03")
elseif("${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
add_compiler_flag("-g")
endif()

if("${CPP_VERSION}" STREQUAL "03")
add_compiler_flag("-std=c++03")
add_compiler_flag("-D \"SX_CPP03_BOOST\"")
add_compiler_flag("-D \"SX_NO_VARIADIC_MACRO\"")
elseif("${CPP_VERSION}" STREQUAL "03")
elseif("${CPP_VERSION}" STREQUAL "14")
add_compiler_flag("-std=c++14")
else()
add_compiler_flag("-std=c++11")
Expand Down
17 changes: 17 additions & 0 deletions externals/hermes/source/externals/essentials/source/changelog.txt
Expand Up @@ -15,6 +15,23 @@ All notable changes to this project are documented in this file.
� missing boost namespace in sxprintf


##[1.3.1] - 2017-08-14

### Changed
� CMake file improvements: Set C++-standard version (when using gcc) using CPP_VERSION with values '03' for C++03, '14' for C++14. Default is C++11.


##[1.3.0] - 2017-06-26


##[1.2.0] - 2017-04-25

### Changed
� internal structure update
� printf code improvements
� helper macro extended up to 15 parameters


##[1.1.0] - 2017-09-20

### Added
Expand Down

0 comments on commit e7aaf87

Please sign in to comment.