Skip to content
Open
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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
src/build/CMakeFiles
src/build/sutil/CMakeFiles
src/build/optixNSearch/CMakeFiles
src/build/lib
8 changes: 7 additions & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,13 @@ function(OPTIX_add_sample_executable target_name_base target_name_var)
# Here is where we create the rule to make the executable. We define a target name and
# list all the source files used to create the target. In addition we also pass along
# the cmake_options parsed out of the arguments.
add_executable(${target_name}
# add_executable(${target_name}
# ${source_files}
# ${generated_files}
# ${cmake_options}
# )

add_library(${target_name} SHARED
${source_files}
${generated_files}
${cmake_options}
Expand Down
Loading