aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Lib.hs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/Lib.hs b/src/Lib.hs
deleted file mode 100644
index 3d4aede..0000000
--- a/src/Lib.hs
+++ /dev/null
@@ -1,21 +0,0 @@
-module Lib
- ( someFunc,
- someFunc2
- ) where
-
-import Development.Shake.FilePath ((</>))
-import System.Process (callCommand)
-
-
-someFunc :: IO ()
-someFunc = do
- putStrLn "someFunc"
- a <- callCommand "gfortran test/test1.f90 -o test1"
- a <- callCommand $ "." </> "test1"
- return ()
-
-someFunc2 :: IO ()
-someFunc2 = do
- putStrLn "example"
- a <- callCommand "cd example_project && stack run -- build"
- return ()