Skip to content
Open
Show file tree
Hide file tree
Changes from 4 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: 5 additions & 3 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# src directory CMake file

include_directories(${CMAKE_CURRENT_SOURCE_DIR})
configure_file(version.h.in "${CMAKE_CURRENT_SOURCE_DIR}/config.h")
configure_file(config.h.in "${CMAKE_CURRENT_SOURCE_DIR}/config.h")

FILE(GLOB h_files "${CMAKE_CURRENT_SOURCE_DIR}/*.h")
FILE(GLOB c_files "${CMAKE_CURRENT_SOURCE_DIR}/*.C")
SET(SOURCE_FILES ${c_files})

Expand All @@ -12,4 +11,7 @@ add_subdirectory(DataLib)

# Add all source files
add_executable(alara ${SOURCE_FILES})
target_link_libraries(alara DataLib)

# Set direcotry variable names
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typo

Suggested change
# Set direcotry variable names
# Set directory variable names

set(DFLT_XSDIR ${xsdir})
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this will do what it needs to do - we should discuss (see note in Slack)

set(DFLT_DATADIR ${nonxsdir})
1 change: 0 additions & 1 deletion src/DataLib/alara.h

This file was deleted.

File renamed without changes.
1 change: 0 additions & 1 deletion src/input.C
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/* $Id: input.C,v 1.14 2007-12-20 22:03:56 wilsonp Exp $ */
#include "alara.h"
#include "input_tokens.h"
//#include "dflt_datadir.h"
#include <sys/types.h>
#include <sys/stat.h>

Expand Down
2 changes: 0 additions & 2 deletions src/version.h

This file was deleted.