Commit cbe72999 authored by Cole's avatar Cole Committed by Kelvin Rodriguez
Browse files

Docs Fix (#21)

* Changed FileName uniteTest to reflect new ISISROOT

* Made pathing changes to reflect build directory being ISISROOT for unitTest

* Moved libs in build dir to 3rdParty

* Unit Test work now

* Revert Trash Commits

This reverts commit 14f01a28.

* Revert Trash Commits

This reverts commit 26803378.

* Changes output directory for apptests and help apps find TestPreferences

* Changed Command To Execute App Tests

Previous change ruined the command and stopped execution of App Tests

* Added a copy of 3rdParty dependencies into 3rdParty structure

* Same changes but better

* Changes

* Changes

* Unit Test and App Test work

* Cleanup

* A bit of a hacky fix for cmake docs

* Non hacky fix for docs

* Forgot how install worked for a second

* Commented code and changed command
parent fc8baa5a
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -460,7 +460,7 @@ function(build_docs)
  # Set up output directory and a temporary directory for building
  set(docBuildFolder   ${CMAKE_BINARY_DIR}/docBuild)
  set(appDataFolder    ${docBuildFolder}/Application/data)
  set(docInstallFolder ${CMAKE_INSTALL_PREFIX}/doc) # Final output documentation
  set(docInstallFolder ${CMAKE_BINARY_DIR}/docs) # Final output documentation

  # Clean up existing files
  execute_process(COMMAND rm -rf ${docBuildFolder})
@@ -495,8 +495,12 @@ function(build_docs)
  message("Building object documentation")
  build_object_docs()

  # copy the built docs in the build directory over to the install directory on install
  execute_process(COMMAND cp -rf ${docInstallFolder} ${CMAKE_INSTALL_PREFIX})

  message("Finished building object documentation!")


endfunction(build_docs)