Commit 9769a235 authored by Kelvin Rodriguez's avatar Kelvin Rodriguez
Browse files

turns out changing isis3 module name to base was not a good idea

parent 4595caeb
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -79,7 +79,7 @@ function(make_obj_unit_test moduleName testFile truthFile reqLibs pluginLibs)
  endforeach()

  # Generate a name for the executable
  set(executableName "unitTest_${filename}")
  set(executableName "${moduleName}_unit_test_${filename}")

  # Create the executable and link it to the module library
  add_executable( ${executableName} ${testFile})
@@ -272,11 +272,7 @@ function(add_isis_module name)
        list(GET unitTestFiles ${val} testFile )
        list(GET truthFiles    ${val} truthFile)

        if(name STREQUAL "isis3")
          make_obj_unit_test("base" ${testFile} ${truthFile} "${reqLibs}" "${pluginLibs}")
        else()
        make_obj_unit_test(${name} ${testFile} ${truthFile} "${reqLibs}" "${pluginLibs}")
        endif()
      endforeach()
    endif()