-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Project rename from CukeBins to Cucumber-Cpp
- Loading branch information
1 parent
f0aa2b2
commit efecfd0
Showing
77 changed files
with
325 additions
and
322 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
project(Calc) | ||
|
||
include_directories(${CUKEBINS_INCLUDE_DIRS} Calc) | ||
include_directories(${CUKE_INCLUDE_DIRS} Calc) | ||
|
||
add_library(Calc Calc/Calculator) | ||
|
||
if(GTEST_FOUND) | ||
include_directories(${GTEST_INCLUDE_DIRS}) | ||
add_executable(GTestCalculatorSteps CalcFeatures/GTestCalculatorSteps) | ||
target_link_libraries(GTestCalculatorSteps Calc ${GTEST_LIBRARIES} ${CUKEBINS_LIBRARIES}) | ||
target_link_libraries(GTestCalculatorSteps Calc ${GTEST_LIBRARIES} ${CUKE_LIBRARIES}) | ||
endif() | ||
|
||
if(CPPSPEC_FOUND) | ||
include_directories(${CPPSPEC_INCLUDE_DIRS}) | ||
add_executable(CppSpecCalculatorSteps CalcFeatures/CppSpecCalculatorSteps) | ||
target_link_libraries(CppSpecCalculatorSteps Calc ${CPPSPEC_LIBRARY} ${CUKEBINS_LIBRARIES}) | ||
target_link_libraries(CppSpecCalculatorSteps Calc ${CPPSPEC_LIBRARY} ${CUKE_LIBRARIES}) | ||
endif() | ||
|
||
if(Boost_UNIT_TEST_FRAMEWORK_FOUND) | ||
include_directories(${Boost_INCLUDE_DIRS}) | ||
add_executable(BoostCalculatorSteps CalcFeatures/BoostCalculatorSteps) | ||
target_link_libraries(BoostCalculatorSteps Calc ${Boost_UNIT_TEST_FRAMEWORK_LIBRARY} ${CUKEBINS_LIBRARIES}) | ||
target_link_libraries(BoostCalculatorSteps Calc ${Boost_UNIT_TEST_FRAMEWORK_LIBRARY} ${CUKE_LIBRARIES}) | ||
endif() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
project(FeatureShowcase) | ||
|
||
include_directories(${CUKEBINS_INCLUDE_DIRS}) | ||
include_directories(${CUKE_INCLUDE_DIRS}) | ||
|
||
if(GTEST_FOUND) | ||
include_directories(${GTEST_INCLUDE_DIRS}) | ||
|
||
add_executable(TagSteps tag/TagSteps) | ||
target_link_libraries(TagSteps ${GTEST_LIBRARIES} ${CUKEBINS_LIBRARIES}) | ||
target_link_libraries(TagSteps ${GTEST_LIBRARIES} ${CUKE_LIBRARIES}) | ||
|
||
add_executable(TableSteps table/TableSteps) | ||
target_link_libraries(TableSteps ${GTEST_LIBRARIES} ${CUKEBINS_LIBRARIES}) | ||
target_link_libraries(TableSteps ${GTEST_LIBRARIES} ${CUKE_LIBRARIES}) | ||
endif() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
include/cukebins/internal/Macros.hpp → include/cucumber-cpp/internal/Macros.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#ifndef CUKEBINS_MACROS_HPP_ | ||
#define CUKEBINS_MACROS_HPP_ | ||
#ifndef CUKE_MACROS_HPP_ | ||
#define CUKE_MACROS_HPP_ | ||
|
||
#include "RegistrationMacros.hpp" | ||
#include "step/StepMacros.hpp" | ||
#include "hook/HookMacros.hpp" | ||
|
||
#endif /* CUKEBINS_MACROS_HPP_ */ | ||
#endif /* CUKE_MACROS_HPP_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.