Skip to content

Commit 5bfa2d2

Browse files
CsvSpawner (#64)
* Moved CsvSpawner *additionaly support for WGS84 has been restored Signed-off-by: Patryk Antosz <[email protected]> Co-authored-by: Patryk Antosz <[email protected]> * Applied review suggestions Signed-off-by: Patryk Antosz <[email protected]> * Updated README with info about CsvSpawner Signed-off-by: Patryk Antosz <[email protected]> * Removed ROS2 version from dependency list Signed-off-by: Patryk Antosz <[email protected]> --------- Signed-off-by: Patryk Antosz <[email protected]> Co-authored-by: Michał Pełka <[email protected]>
1 parent ce7f1a5 commit 5bfa2d2

File tree

59 files changed

+10001
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+10001
-1
lines changed

Gems/CsvSpawner/.gitignore

Whitespace-only changes.

Gems/CsvSpawner/CMakeLists.txt

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
# Query the gem name from the gem.json file if possible
3+
# otherwise fallback to using CsvSpawner
4+
o3de_find_ancestor_gem_root(gem_path gem_name "${CMAKE_CURRENT_SOURCE_DIR}")
5+
if (NOT gem_name)
6+
set(gem_name "CsvSpawner")
7+
endif()
8+
9+
# Fallback to using the current source CMakeLists.txt directory as the gem root path
10+
if (NOT gem_path)
11+
set(gem_path ${CMAKE_CURRENT_SOURCE_DIR})
12+
endif()
13+
14+
set(gem_json ${gem_path}/gem.json)
15+
16+
o3de_restricted_path(${gem_json} gem_restricted_path gem_parent_relative_path)
17+
18+
o3de_pal_dir(pal_dir ${CMAKE_CURRENT_SOURCE_DIR}/Platform/${PAL_PLATFORM_NAME} "${gem_restricted_path}" "${gem_path}" "${gem_parent_relative_path}")
19+
20+
ly_add_external_target_path(${CMAKE_CURRENT_SOURCE_DIR}/3rdParty)
21+
22+
add_subdirectory(Code)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
The "CSV for C++" library is Open Source, MIT-licensed contribution by Vincent La available at https://github.com/vincentlaucsb/csv-parser/blob/master/single_include/csv.hpp.

0 commit comments

Comments
 (0)