We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f736929 commit 81fd278Copy full SHA for 81fd278
1 file changed
src/CMakeLists.txt
@@ -10,3 +10,12 @@ target_include_directories(consgeo PRIVATE
10
install(TARGETS consgeo EXPORT ${PROJECT_NAME}Targets
11
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
12
)
13
+
14
+# simtox creates a numpy file with initial photons for simulation
15
+add_executable(simtox simtox.cpp)
16
+target_link_libraries(simtox SysRap)
17
+target_include_directories(simtox PRIVATE
18
+ $<BUILD_INTERFACE:${CMAKE_SOURCE_DIR}/include>
19
+ $<BUILD_INTERFACE:${CMAKE_SOURCE_DIR}>
20
+)
21
+install(TARGETS simtox RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
0 commit comments