Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

- name: Test
run: |
cd build && ctest -j1 .
cd build && ctest --verbose -j1 .

linux:
name: Ubuntu Latest GCC
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:

- name: Test
run: |
cd build && ctest -j1 . -C Release
cd build && ctest --verbose -j1 . -C Release

linux_clang:
name: Ubuntu Latest Clang
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:

- name: Test
run: |
cd build && ctest -j1 . -C Release
cd build && ctest --verbose -j1 . -C Release


osx:
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:

- name: Test
run: |
cd build && ctest -j1 . -C Release
cd build && ctest --verbose -j1 . -C Release

brlcad_linux:
name: BRL-CAD Linux step-g Test
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
/build-*
/.build


# Temporary files
*~
\#*\#
Expand All @@ -21,3 +20,6 @@
# Tool specific patterns
*.kdev4
.kdev_include_paths

# Parser generator intermediate files
*.out
7 changes: 6 additions & 1 deletion cmake/schema_scanner/schemaScanner.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,12 @@ macro(SCHEMA_CMLIST SCHEMA_FILE)
string(STRIP "${_ss_out}" _ss_stripped)
string(REGEX REPLACE "\\\n" ";" _list ${_ss_stripped})
foreach(_dir ${_list})
add_subdirectory(${_dir} ${_dir}) #specify source and binary dirs as the same
get_property(_already_added GLOBAL PROPERTY _SC_SCHEMA_DIRS)
list(FIND _already_added "${_dir}" _idx)
if(${_idx} EQUAL -1)
set_property(GLOBAL APPEND PROPERTY _SC_SCHEMA_DIRS "${_dir}")
add_subdirectory(${_dir} ${_dir}) #specify source and binary dirs as the same
endif()
endforeach(_dir ${_ss_out})
# configure_file forces cmake to run again if the schema has been modified
#if multiple schemas in one file, _schema is the last one printed.
Expand Down
54,756 changes: 54,756 additions & 0 deletions data/ap242/242_mim_lf.exp

Large diffs are not rendered by default.

Loading
Loading