-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed tests/examples to updated function calls and includes
- Loading branch information
Showing
23 changed files
with
220 additions
and
458 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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Specify the minimum cmake version | ||
cmake_minimum_required(VERSION 3.9) | ||
|
||
# Specify the name of your project | ||
project(reactions) | ||
|
||
# Find the ThermoFun dependency. | ||
find_package(ThermoFun REQUIRED) | ||
|
||
# Create an executable named app with source code main.cpp | ||
add_executable(reactions src/main.cpp) | ||
|
||
# Link your application against ThermoFun C++ library. | ||
target_link_libraries(reactions ThermoFun::ThermoFun) |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Specify the minimum cmake version | ||
cmake_minimum_required(VERSION 3.9) | ||
|
||
# Specify the name of your project | ||
project(test01) | ||
|
||
# Find the ThermoFun dependency. | ||
find_package(ThermoFun REQUIRED) | ||
|
||
# Create an executable named app with source code main.cpp | ||
add_executable(test01 src/main.cpp) | ||
|
||
# Link your application against ThermoFun C++ library. | ||
target_link_libraries(test01 ThermoFun::ThermoFun) |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Specify the minimum cmake version | ||
cmake_minimum_required(VERSION 3.9) | ||
|
||
# Specify the name of your project | ||
project(test02) | ||
|
||
# Find the ThermoFun dependency. | ||
find_package(ThermoFun REQUIRED) | ||
|
||
# Create an executable named app with source code main.cpp | ||
add_executable(test02 src/main.cpp) | ||
|
||
# Link your application against ThermoFun C++ library. | ||
target_link_libraries(test02 ThermoFun::ThermoFun) |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Specify the minimum cmake version | ||
cmake_minimum_required(VERSION 3.9) | ||
|
||
# Specify the name of your project | ||
project(test03) | ||
|
||
# Find the ThermoFun dependency. | ||
find_package(ThermoFun REQUIRED) | ||
|
||
# Create an executable named app with source code main.cpp | ||
add_executable(test03 src/main.cpp) | ||
|
||
# Link your application against ThermoFun C++ library. | ||
target_link_libraries(test03 ThermoFun::ThermoFun) |
Oops, something went wrong.