Skip to content

Commit c355b8a

Browse files
committed
Merge branch 'next_release'
2 parents d17fcf9 + 7971d9f commit c355b8a

File tree

1,014 files changed

+8491
-2766
lines changed

Some content is hidden

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

1,014 files changed

+8491
-2766
lines changed

.github/workflows/anari_sdk_ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,4 @@ jobs:
4545

4646
- name: Render Tests
4747
working-directory: ${{github.workspace}}/build
48-
if: ${{ matrix.config == 'Release' }}
4948
run: ctest -R render_test -C ${{ matrix.config }}

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Copyright 2021 The Khronos Group
1+
## Copyright 2021-2024 The Khronos Group
22
## SPDX-License-Identifier: Apache-2.0
33

44
cmake_minimum_required(VERSION 3.11)
@@ -28,7 +28,7 @@ list(APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}/cmake)
2828

2929
## Establish project
3030

31-
project(anari VERSION 0.8.0 LANGUAGES C CXX)
31+
project(anari VERSION 0.9.0 LANGUAGES C CXX)
3232

3333
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR})
3434
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR})
@@ -66,7 +66,7 @@ include(cmake/anari_sdk_fetch_project.cmake)
6666

6767
## Add library and executable targets
6868

69-
add_subdirectory(libs)
69+
add_subdirectory(src)
7070
add_subdirectory(external)
7171
add_subdirectory(code_gen)
7272
if (BUILD_EXAMPLES)

cmake/Findanari.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Copyright 2022 The Khronos Group
1+
## Copyright 2022-2024 The Khronos Group
22
## SPDX-License-Identifier: Apache-2.0
33

44
## NOTE: DO NOT USE THIS MODULE FILE!!! This CMake module sets up fake imported

cmake/anariConfig.cmake.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Copyright 2021 The Khronos Group
1+
## Copyright 2021-2024 The Khronos Group
22
## SPDX-License-Identifier: Apache-2.0
33

44
@PACKAGE_INIT@

cmake/anari_generate_codegen.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Copyright 2023 The Khronos Group
1+
## Copyright 2023-2024 The Khronos Group
22
## SPDX-License-Identifier: Apache-2.0
33

44
function(anari_generate_queries)

cmake/anari_generate_frontend.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Copyright 2021 The Khronos Group
1+
## Copyright 2021-2024 The Khronos Group
22
## SPDX-License-Identifier: Apache-2.0
33

44
function(anari_generate_frontend)

cmake/anari_sdk_fetch_project.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Copyright 2023 The Khronos Group
1+
## Copyright 2023-2024 The Khronos Group
22
## SPDX-License-Identifier: Apache-2.0
33

44
include(FetchContent)

cmake/cmake_project_commands.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Copyright 2022 The Khronos Group
1+
## Copyright 2022-2024 The Khronos Group
22
## SPDX-License-Identifier: Apache-2.0
33

44
function(project_add_executable)

cmake/mark_cache_variables_as_advanced.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Copyright 2023 The Khronos Group
1+
## Copyright 2023-2024 The Khronos Group
22
## SPDX-License-Identifier: Apache-2.0
33

44
function(mark_cache_variables_as_advanced)

code_gen/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Copyright 2021 The Khronos Group
1+
## Copyright 2021-2024 The Khronos Group
22
## SPDX-License-Identifier: Apache-2.0
33

44
if(CMAKE_VERSION VERSION_GREATER_EQUAL "3.12")

0 commit comments

Comments
 (0)